Enum EditType
Specifies the edit type of the GridColumn. It is used to render the specified editor component in the grid edit form to edit the corresponding cell value.
- DefaultEditDefault. Text box is used for editing.
- DropDownEditDropDownList is used for editing.
- BooleanEditCheckbox is used for editing.
- DatePickerEditDate picker is used for editing.
- DateTimePickerEditDatetime picker is used for editing.
- NumericEditNumeric textbox is used for editing.
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
[JsonConverter(typeof(JsonStringEnumConverter))]
public enum EditType
Fields
| Name | Description |
|---|---|
| BooleanEdit | Checkbox is used for editing. |
| DatePickerEdit | Date picker is used for editing. |
| DateTimePickerEdit | Date time picker is used for editing. |
| DefaultEdit | Default. Text box is used for editing. |
| DropDownEdit | DropDownList is used for editing. |
| NumericEdit | Numeric textbox is used for editing. |
| TimePickerEdit | SfTimePicker<TValue> component will rendered to edit the corresponding cell value. |