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 = 4Checkbox input for boolean true/false values.
Date = 3Date picker input for date selection.
Lookup = 7Lookup input with search/autocomplete functionality.
Number = 2Numeric input field with validation for numbers.
Radio = 5Radio button input for selecting one option from a group.
Select = 6Dropdown select list for choosing from predefined options.
Text = 0Standard text input field for single-line text entry.
TextArea = 1Multi-line text area for longer text content.