TextBoxTagHelper
Example
Razor
<kendo-textbox>
<prefix-options></prefix-options>
<suffix-options></suffix-options>
<textbox-label />
</kendo-textbox>
ChildTags
Tag Name | Details |
---|---|
prefix-options | TextBoxPrefixOptionsSettingsTagHelper |
suffix-options | TextBoxSuffixOptionsSettingsTagHelper |
textbox-label | TextBoxLabelSettingsTagHelper |
Attributes
Attribute | Type | Description |
---|---|---|
name | String | Sets the name of the component. |
clear-button | Boolean | If set to true, will render a button that can be used to clear the value. |
enable | Boolean | If set to false, the widget will be disabled and will not allow user input. The widget is enabled by default and allows user input. |
fill-mode | FillMode | Sets a value controlling how the color is applied. |
for | ModelExpression | An expression to be evaluated against the current model. |
input-mode | String | Specifies the inputmode attribute of the inner <input /> element. It is used to specify the type of on-screen keyboard that should be displayed when the user focuses the input. |
on-change | String | The name of the JavaScript function that will handle the change event. Fired when the value of the widget is changed by the user.The event handler function context (available through the keyword this) will be set to the widget instance. |
placeholder | String | The hint displayed by the widget when it is empty. Not set by default. |
readonly | Boolean | If set to true, the widget will be readonly and will not allow user input. The widget is not readonly by default and allows user input. |
rounded | Rounded | Sets a value controlling the border radius. |
script-attributes | IDictionary<String,Object> | Sets the attributes that will be added to the script tag of the component's initialization script. |
size | ComponentSize | Sets the size of the component. |
value | String | The value of the widget. |
is-in-client-template | Boolean | When placing a Tag Helper within a Kendo Template, set the type to text/html and add the is-in-client-template="true" attribute. |
deferred | Boolean | Suppress initialization script rendering. Note that this options should be used in conjunction with DeferredScripts method. |
as-module | Boolean | Specifies whether the initialization script of the component will be rendered as a JavaScript module. |