My old code:
Was working just fine
however, since updating to: Kendo 2014.2.1008
This code works sporadically and although the Checkboxes get checked visually this code throws an error and the grid line is not recognized as checked/selected??
how Do I modify the code to fix?
or do I just revert back to old Kendo scripts?
function
updateReconcileCB(cb) {
var
grid = $(
"#Receipts"
).data(
"kendoGrid"
);
var
di = grid.dataItem(grid.select());
di.selected = cb.checked;
}
Was working just fine
however, since updating to: Kendo 2014.2.1008
This code works sporadically and although the Checkboxes get checked visually this code throws an error and the grid line is not recognized as checked/selected??
how Do I modify the code to fix?
or do I just revert back to old Kendo scripts?