在模板列的帮助下,是否有任何配置列以允许排序。
网格已经设置[sortable]="true"
我可以直接在列上进行配置,如下所示:
<kendo-grid-column *ngFor="let col of columns;" field="{{col.Name}}" title="col.Name" [sortable]="col.CanSort">
</kendo-grid-column>
但无法在模板的帮助下进行配置,如下所示:
<template *ngFor="let col of columns" let-column>
<kendo-grid-column field="{{col.Name}}" title="col.Name" [sortable]="false">
<template kendoHeaderTemplate let-dataItem>
{{dataItem.field}}
</template>
</kendo-grid-column>
</template>
有人有想法吗?