ColumnEditParams
Configuration interface for column-level edit settings in the grid. Defines the type of input component to render during editing and allows passing component-specific configuration parameters.
Props
The following table outlines the props for the ColumnEditParams:
| Name | Type | Default | Description |
|---|---|---|---|
| params | Partial<TextBoxProps & NumericTextBoxProps & CheckboxProps & DatePickerProps & DropDownListProps> | - | Configuration parameters passed to the edit component.
These parameters vary depending on the selected edit type and may include
properties such as placeholder text, formatting options,
and dropdown data sources.
Supports partial props from multiple component types including:
|
| type | EditType | string | EditType.TextBox | 'StringEdit' | Specifies the type of edit component to be rendered for the column. Determines the input control used during editing, such as a textbox, dropdown, date picker, or checkbox. Custom string identifiers may also be used for custom edit components. |