FileManagerViewsListSettingsTagHelper
Example
Razor
<list>
<alt-template></alt-template>
<edit-template></edit-template>
<item-template></item-template>
</list>
ChildTags
| Tag Name | Details |
|---|---|
| alt-template | TemplateTagHelper |
| edit-template | TemplateTagHelper |
| item-template | TemplateTagHelper |
Attributes
| Attribute | Type | Description |
|---|---|---|
| alt-template | String | Template to be used for rendering the alternate items. |
| alt-template-handler | String | Template to be used for rendering the alternate items. This option expects the name of a JavaScript function that will be called to return the template. |
| alt-template-id | String | Template to be used for rendering the alternate items. This option expects the ID of the script element that contains the template. |
| alt-template-view | IHtmlContent | Template to be used for rendering the alternate items. This option expects the instance containing the created HTML. |
| edit-template | String | Specifies the template for items during edit mode. |
| edit-template-handler | String | Specifies the template for items during edit mode. This option expects the name of a JavaScript function that will be called to return the template. |
| edit-template-id | String | Specifies the template for items during edit mode. This option expects the ID of the script element that contains the template. |
| edit-template-view | IHtmlContent | Specifies the template for items during edit mode. This option expects the instance containing the created HTML. |
| template | String | Represents a collection of templates defined for the component. |
| template-handler | String | Specifies item template. This option expects the name of a JavaScript function that will be called to return the template. |
| template-id | String | Specifies item template. This option expects the ID of the script element that contains the template. |
| template-view | IHtmlContent | Specifies item template. This option expects the instance containing the created HTML. |