New to Kendo UI for Angular? Start a free 30-day trial
ActionSheetItemTemplateDirective
Represents a template for customizing the content of each ActionSheet item.
To define the template, nest an <ng-template>
tag
with the kendoActionSheetItemTemplate
directive inside the <kendo-actionsheet>
tag.
html
<kendo-actionsheet [items]="items">
<ng-template kendoActionSheetItemTemplate let-item>
<span>{{ item.title }} (custom)</span>
</ng-template>
</kendo-actionsheet>
Selector
[kendoActionSheetItemTemplate]