Class InputType
Specifies the type of component to be rendered for editing within the In-Place Editor.
Inheritance
Namespace: Syncfusion.Blazor.InPlaceEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public sealed class InputType : Enum
Remarks
This enumeration allows you to select from a range of integrated Syncfusion Blazor components to serve as the editor.
Fields
AutoComplete
Renders the SfAutoComplete<TValue, TItem> component for text entry with suggestions.
Declaration
public const InputType AutoComplete
Field Value
Type | Description |
---|---|
InputType | An autocomplete text box that provides suggestions as the user types. |
Color
Renders the SfColorPicker for color selection.
Declaration
public const InputType Color
Field Value
Type | Description |
---|---|
InputType | A color picker component. |
ComboBox
Renders the SfComboBox<TValue, TItem>, which combines a text box with a dropdown list.
Declaration
public const InputType ComboBox
Field Value
Type | Description |
---|---|
InputType | A combo box for selection from a list or custom value entry. |
Date
Renders the SfDatePicker<TValue> for selecting a date.
Declaration
public const InputType Date
Field Value
Type | Description |
---|---|
InputType | A date picker component. |
DateRange
Renders the SfDateRangePicker<TValue> for selecting a range of dates.
Declaration
public const InputType DateRange
Field Value
Type | Description |
---|---|
InputType | A date range picker component. |
DateTime
Renders the SfDateTimePicker<TValue> for selecting a date and time.
Declaration
public const InputType DateTime
Field Value
Type | Description |
---|---|
InputType | A date and time picker component. |
DropDownList
Renders the SfDropDownList<TValue, TItem> for selecting an item from a list.
Declaration
public const InputType DropDownList
Field Value
Type | Description |
---|---|
InputType | A dropdown list for single-item selection. |
Mask
Renders the SfMaskedTextBox for formatted text entry.
Declaration
public const InputType Mask
Field Value
Type | Description |
---|---|
InputType | A masked text box for inputs requiring a specific format, such as phone numbers. |
MultiSelect
Renders the SfMultiSelect<TValue, TItem> for selecting multiple items from a list.
Declaration
public const InputType MultiSelect
Field Value
Type | Description |
---|---|
InputType | A multi-select dropdown component. |
Numeric
Renders the SfNumericTextBox<TValue> for numeric value entry.
Declaration
public const InputType Numeric
Field Value
Type | Description |
---|---|
InputType | A text box restricted to numeric input. |
RichTextEditor
Renders the SfRichTextEditor for formatted text editing.
Declaration
public const InputType RichTextEditor
Field Value
Type | Description |
---|---|
InputType | A rich text editor for advanced content creation. |
Remarks
This editor is best used with Popup.
Slider
Renders the SfSlider<TValue> for selecting a value from a range.
Declaration
public const InputType Slider
Field Value
Type | Description |
---|---|
InputType | A slider component for numeric range selection. |
Template
Renders a custom component defined in a template.
Declaration
public const InputType Template
Field Value
Type | Description |
---|---|
InputType | A placeholder for a custom Blazor component. |
Remarks
Use this option to integrate any Blazor component as an editor by defining a custom template.
Text
Renders a simple text input using the SfTextBox.
Declaration
public const InputType Text
Field Value
Type | Description |
---|---|
InputType | A standard text box for plain text entry. |
Time
Renders the SfTimePicker<TValue> for selecting a time.
Declaration
public const InputType Time
Field Value
Type | Description |
---|---|
InputType | A time picker component. |