剣道グリッド内の各行にチェックボックスがあります。ユーザーがグリッドをソートまたはフィルタリングすると、チェックボックスからチェックマークがクリアされます。並べ替えまたはフィルターの実行後にチェックボックスのチェックを外したり、再度チェックしたりしないようにするにはどうすればよいですか? 並べ替え中の動作を観察するには、次の js フィドルを参照してください。
参照用の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}
]});