Renders the history item content.
To define the history item template, nest a <ng-template> tag with the kendoGridSmartBoxHistoryItemTemplate directive inside the component tag.
The template context is set to the current history item. Use the let-item directive to reference the current history item.
Definition
Package:@progress/kendo-angular-grid
Selector:[kendoGridSmartBoxHistoryItemTemplate]
Syntax:
html
<kendo-smartbox>
<ng-template kendoGridSmartBoxHistoryItemTemplate let-item>
<kendo-icon-wrapper name="clock" [svgIcon]="clockIcon"></kendo-icon-wrapper>
<span>{{item.text}} ({{ item.timestamp | date: 'shortTime' }})</span>
</ng-template>
</kendo-smartbox>