Checkpoint
Example
Razor
<kendo-checkpoint>
<checkpoint-template></checkpoint-template>
<messages />
</kendo-checkpoint>
ChildTags
| Tag Name | Details |
|---|---|
| checkpoint-template | TemplateTagHelper |
| messages | CheckpointMessagesSettingsTagHelper |
Attributes
| Attribute | Type | Description |
|---|---|---|
| name | String | Sets the name of the component. |
| display-mode | CheckpointDisplayMode | Controls when the checkpoint button is visible. |
| on-action | String | The name of the JavaScript function that will handle the action event. Fired when the user clicks the checkpoint button.The event handler function context (available via the this keyword) will be set to the widget instance. |
| script-attributes | IDictionary<String,Object> | Sets the attributes that will be added to the script tag of the component's initialization script. |
| state | CheckpointState | The current action state of the checkpoint. |
| template-handler | String | A function used to render the entire checkpoint body, replacing the default button layout. Called with an empty object and must return an HTML string. This option expects the name of a JavaScript function that will be called to return the template. |
| 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. |