我有一个Kendo网格,根据数据,我需要在一列中使用不同的输入控件。我有三种情况:
答案 0 :(得分:3)
在您定义列的模板中,您可以为单元格使用自定义模板。在这里你可以写一些条件来决定渲染什么:
<kendo-grid-column field="example" title="Example" width="100">
<ng-template kendoGridCellTemplate let-dataItem>
<!-- You can use ngIf and/or ngSwitch here. -->
</ng-template>
</kendo-grid-column>
API:https://www.telerik.com/kendo-angular-ui/components/grid/api/CellTemplateDirective/