You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be very useful for our use cases (and from looking through the open issues, others as well) if the EditbleCell allowed for EditableText props to be passed down to use functionality such as placeholder, maxLength, multiline, maxLines, minLines, and default value. In complex editable grid scenarios, being able to tap into these existing behaviors of EditableText would be a massive timesaver and removes the need to create completely custom cell components in order to pass a single additional prop to the cell editor.
Examples
Support in a cell rendererer:
return(<EditableCellkey={key}id={id}value={value}// This prop would be great to be able to passeditableTextProps={{maxLength: 255,placeholder: 'Please enter a unique value',}}/>);
The text was updated successfully, but these errors were encountered:
Environment
Feature request
It would be very useful for our use cases (and from looking through the open issues, others as well) if the EditbleCell allowed for EditableText props to be passed down to use functionality such as placeholder, maxLength, multiline, maxLines, minLines, and default value. In complex editable grid scenarios, being able to tap into these existing behaviors of EditableText would be a massive timesaver and removes the need to create completely custom cell components in order to pass a single additional prop to the cell editor.
Examples
Support in a cell rendererer:
The text was updated successfully, but these errors were encountered: