网格加载时默认选择Angular 4 Kendo UI Grid第一行

时间:2017-08-17 13:56:14

标签: angular kendo-ui kendo-grid

我正在尝试在网格加载时默认选择角度剑道网格的第一行。有什么建议吗?

2 个答案:

答案 0 :(得分:6)

您必须设置[kendoGridSelectBy][selectedKeys]属性才能执行此操作。

注意 - 如果没有[selectedKeys] [kendoGridSelectBy]属性无效,则会导致错误Can't bind to 'selectedKeys' since it isn't a known property of 'kendo-grid'

阅读https://www.telerik.com/kendo-angular-ui/components/grid/selection/#toc-persisting-the-selection了解详情。

答案 1 :(得分:0)

您可以使用网格的选择保留功能。

在你的ts代码中添加类似的内容:

private mySelection: number[] = [0];

在html中添加:

<kendo-grid [selectedKeys]="mySelection"