我在剑道网格中的每一行都有一个复选框。如果用户对网格进行排序或过滤,则从复选框中清除复选标记。在排序或过滤发生后,如何防止复选框取消选中或重新选中它们?请参考以下 js fiddle 观察排序过程中的行为:
这是 jsfiddle 上的代码供参考(......需要问这个问题):
$('#grid').kendoGrid({
dataSource: { data: [{id:3, test:'row check box will unchecked upon sorting'}]},
sortable: true,
columns:[
{
field:'<input id="masterCheck" class="check" type="checkbox" /><label for="masterCheck"></label>',
template: '<input id="${id}" type="checkbox" />',
filterable: false,
width: 33,
sortable: false // may want to make this sortable later. will need to build a custom sorter.
},
{field: 'test',
sortable: true}
]});