Enum InputType
Specifies the type of component to be rendered for editing within the In-Place Editor.
Namespace: Syncfusion.Blazor.InPlaceEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public enum InputType
Remarks
This enumeration allows you to select from a range of integrated Syncfusion Blazor components to serve as the editor.
Fields
| Name | Description |
|---|---|
| AutoComplete | Renders the SfAutoComplete<TValue, TItem> component for text entry with suggestions. |
| Color | Renders the SfColorPicker for color selection. |
| ComboBox | Renders the SfComboBox<TValue, TItem>, which combines a text box with a dropdown list. |
| Date | Renders the SfDatePicker<TValue> for selecting a date. |
| DateRange | Renders the SfDateRangePicker<TValue> for selecting a range of dates. |
| DateTime | Renders the SfDateTimePicker<TValue> for selecting a date and time. |
| DropDownList | Renders the SfDropDownList<TValue, TItem> for selecting an item from a list. |
| Mask | Renders the SfMaskedTextBox for formatted text entry. |
| MultiSelect | Renders the SfMultiSelect<TValue, TItem> for selecting multiple items from a list. |
| Numeric | Renders the SfNumericTextBox<TValue> for numeric value entry. |
| RichTextEditor | Renders the SfRichTextEditor for formatted text editing. |
| Slider | Renders the SfSlider<TValue> for selecting a value from a range. |
| Template | Renders a custom component defined in a template. |
| Text | Renders a simple text input using the SfTextBox. |
| Time | Renders the SfTimePicker<TValue> for selecting a time. |