CellLoadingTemplateDirective
Represents the virtual scrolling cell template of the Grid while loading new data. Provides an option to customize the
appearance of the indicator that is displayed while new data is loading. To define the loading cell template,
nest an <ng-template>
tag with the kendoGridCellLoadingTemplate
directive inside <kendo-grid>
(see example).
The template context is set to the current column, and utilizes the let-x
syntax—for example, let-column
.
<kendo-grid [data]="data" scrollable="virtual" [rowHeight]="36">
<ng-template kendoGridCellLoadingTemplate let-column>
...
</ng-template>
</kendo-grid>
Selector
[kendoGridCellLoadingTemplate]