Enum InputKind
- Namespace
- Htmx.Components.Models
- Assembly
- Htmx.Components.dll
Specifies the type of input control to render. Determines the HTML input type and behavior for form fields.
public enum InputKind
- Extension Methods
Fields
Checkbox = 4
Checkbox input for boolean true/false values.
Date = 3
Date picker input for date selection.
Lookup = 7
Lookup input with search/autocomplete functionality.
Number = 2
Numeric input field with validation for numbers.
Radio = 5
Radio button input for selecting one option from a group.
Select = 6
Dropdown select list for choosing from predefined options.
Text = 0
Standard text input field for single-line text entry.
TextArea = 1
Multi-line text area for longer text content.