1
是否有任何配置列以允許在模板列的幫助下進行排序?KendoUI Grid with Angular2:在列模板中配置排序
電網已經制定[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>
任何人有想法?