name | String | Sets the name of the component. |
as-module | Boolean | Specifies whether the initialization script of the component will be rendered as a JavaScript module. |
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. |
buttons-template | String | Specifies the template which is used for rendering the Form buttons. |
buttons-template-handler | String | Specifies the template which is used for rendering the Form buttons. This option expects the name of a JavaScript function that will be called to return the template. |
buttons-template-id | String | Specifies the template which is used for rendering the Form buttons. This option expects the ID of the script element that contains the template. |
buttons-template-view | IHtmlContent | Specifies the template which is used for rendering the Form buttons. This option expects the instance containing the created HTML. |
clear-button | Boolean | Specifies if the clearButton should be rendered on initialization. |
focus-first | Boolean | Specifies if the first editor of the form will be focused on initialization. |
format-label | String | Callback function that could be used to change the default format of the automatically generated labels. |
form-data | Object | Provides the data model of the Form. The widget renders the form fields based on their data type, unless the items option is specified. |
layout | String | Specify the layout of Form content. Valid options are: grid: This is equivalent to display: grid. It defines the form element as a grid container and establishes a new grid formatting context for its contents.. |
on-change | String | The name of the JavaScript function that will handle the change event. Triggered when the form model is updated. |
on-clear | String | The name of the JavaScript function that will handle the clear event. Triggered when the form is cleared. |
on-submit | String | The name of the JavaScript function that will handle the submit event. Triggered when the form is submitted. |
on-validate | String | The name of the JavaScript function that will handle the validate event. Fired when the validation of the entire form completes. |
on-validate-field | String | The name of the JavaScript function that will handle the validateField event. Fired when the validation state of a field changes. |
orientation | String | Configures the Form orientation. Available options are "horizontal" and "vertical".By default, the Form is rendered with vertical orientation. |
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 a value controlling the size of the input. |