Reasoning
Example
Razor
<kendo-reasoning>
<content-template></content-template>
</kendo-reasoning>
ChildTags
| Tag Name | Details |
|---|---|
| content-template | TemplateTagHelper |
Attributes
| Attribute | Type | Description |
|---|---|---|
| name | String | Sets the name of the component. |
| completed | Boolean | Marks the reasoning step as completed, applying the k-agent-completed CSS class to the element. |
| content | String | Plain text content rendered inside the step body. |
| content-template-handler | String | A function used to render the content body. 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. |
| expandable | Boolean | Enables toggling the visibility of the content body by clicking the header or using the keyboard. |
| expanded | Boolean | Controls whether the content body is visible when the widget initializes. |
| label | String | The primary text label displayed in the step header. |
| on-expanded-change | String | The name of the JavaScript function that will handle the expandedChange event. Fired when the user clicks the header to toggle the expanded state. Calling e.preventDefault() prevents the toggle from taking effect.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. |
| secondary-label | String | A secondary text label displayed after the separator in the step header. |
| svg-icon | String | The name of the SVG icon displayed in the step header. |
| time | String | A time or duration string displayed after a separator in the step header. |
| 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. |