Enum FormEditorType
Specifies the editor control type to render for a field in a Syncfusion DataForm.
Namespace: Syncfusion.Blazor.DataForm
Assembly: Syncfusion.Blazor.dll
Syntax
public enum FormEditorType
Remarks
This enumeration defines which Syncfusion editor component is used for a given form field, based on its specified data type or customization requirements.
Examples
<SfDataFormItem EditorType="FormEditorType.DropDownList" ... />
Fields
| Name | Description |
|---|---|
| AutoComplete | Set the form field editor to use an AutoComplete component allowing filtered selection. |
| Checkbox | Set the form field editor to use a Checkbox component for boolean input. |
| ComboBox | Set the form field editor to use a ComboBox component, providing auto-complete and selection features. |
| DatePicker | Set the form field editor to use a DatePicker component for date selection. |
| DateTimePicker | Set the form field editor to use a DateTimePicker component for date and time entry. |
| DropDownList | Set the form field editor to use a DropDownList component for selection from a list. |
| Password | Set the form field editor to use a TextBox component with password masking enabled. |
| Switch | Set the form field editor to use a Switch component for a toggleable boolean input. |
| TextArea | Set the form field editor to use a TextArea component for multiline text entry. |
| TextBox | Set the form field editor to use a TextBox component for basic text entry. |
| TimePicker | Set the form field editor to use a TimePicker component for time-only selection. |