Name | Type | Default | Description |
Disabled | bool | false | Enables or disables the element. |
Locale | string | "en" | Sets or gets the language. Used in conjunction with the property messages. |
Messages | object | N/A | Sets or gets an object specifying strings used in the widget that can be localized. Used in conjunction with the property locale. |
MinLength | int | 1 | Determines the minimum number of characters inside the input in order to trigger the autocomplete functionality that will open the drop down and show the matched items. |
Name | string | "" | Sets or gets the name attribute for the element. Name is used when submiting data inside an HTML form. |
Placeholder | string | "" | Determines the placeholder of the input. |
RightToLeft | bool | false | Sets or gets the value indicating whether the element is aligned to support locales using right-to-left fonts. |
Theme | string | "" | Determines the theme for the element. Themes define the look of the elements. |
Unfocusable | bool | false | If is set to true, the element cannot be focused. |
Value | string | "" | Sets or gets the value of the element. |
Name | Type | Description | Event Detail |
OnChange | EventCallback<Event> | This event is triggered when the value is changed and the focus moved out of the element. | dynamic oldValue- The previous value., dynamic value- The new value. |
Changed | event PasswordInputChangedEventHandler | This event is triggered when the value is changed and the focus moved out of the element. | PasswordInputChangedEventArgs |
OnChanging | EventCallback<Event> | This event is triggered on each key up event of the PasswordInput, if the value is changed. | dynamic oldValue- The previous value before it was changed., dynamic value- The new value. |
Changing | event PasswordInputChangingEventHandler | This event is triggered on each key up event of the PasswordInput, if the value is changed. | PasswordInputChangingEventArgs |