Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个剑道网格。我要做的是先过滤它,效果很好。过滤后,我想选择一个特定的行。我确定我在过滤器的结果中有该行。
例子:
data = id=a1, id=a2, id=a3, id=a4, id=a5, id=a6
过滤结果:
id=a2, id=a4, id=a6
我想选择 a4 行。
首先遍历当前显示的网格数据(即
var arrayOfModels = $('#GridName').data().kendoGrid.dataSource.view();
接下来将 k-state-selected 类添加到要使其选中的行
$('#GridName tbody [data-uid='+model.uid+']').addClass('.k-state-selected')
其中model是您需要的 arrayOfModels 中的记录