gpt4 book ai didi

angular - Kendo Angular 2 网格的行模板

转载 作者:行者123 更新时间:2023-12-05 07:34:03 25 4
gpt4 key购买 nike

根据 https://www.telerik.com/kendo-angular-ui/components/faq/ Kendo Grid for Angular 2 支持行模板

Does the Grid for Angular support the same attributes, such as header attributes and row templates, as the Grid for jQuery?

Yes, it does. For more information, refer to the API index of the Grid.

但是,查看 API 和示例,我无法在任何地方找到 rowTemplate 示例。我需要向行添加指令以获取行级工具提示。这可能吗?

最佳答案

我认为行模板不存在。
但您可能需要单元格模板。演示可以在Columns Templates下找到.

This plunkr正在显示有关单元格值的提示。

<kendo-grid [data]="gridData">
<kendo-grid-column field="ProductName">
<ng-template kendoGridCellTemplate let-dataItem let-rowIndex="rowIndex">
<strong [title]="dataItem.Discontinued ? 'discontinued' : 'active'">{{dataItem.ProductName}}</strong>
</ng-template>
</kendo-grid-column>
</kendo-grid>

关于angular - Kendo Angular 2 网格的行模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50354614/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com