I have created Grid And than add Multiple Selection (Checkbox)
` $(‘grid’).jqxGrid(
{
width: 450,
pagesize: 5,
source: dataAdapter,
pageable: true,
autorowheight: true,
autoheight: true,
height:200,
editable:false,
columnsresize: true,
selectionmode: ‘checkbox’,
columns:cols
});
$(‘grid’).on(‘rowselect’, function (event) {
var rowindexes = $(‘grid’).jqxGrid(‘getselectedrowindexes’);
});`
And get the row index incorrect calculate
because old selection array append the rowIndexex variable,
because cache problem
I have apply clear ,destroy, but do not resolve the problem
How can I handle Cache Problem in grid ?