I have upgraded to 2016.3.1028 and am having the same issue
I am using jQuery 1.9.1 on i.e. 11.0.9600
I have legacy code that is now breaking:
my Grid configuration looks like this:
.Selectable(s => s.Mode(Kendo.Mvc.UI.GridSelectionMode.Single))
My JavaScript for check box check looks like this:
function
updateExportCB(cb) {
var
grid = $(
"#Receipts"
).data(
"kendoGrid"
);
var
di = grid.dataItem(grid.select());
//di.selectedForExport = cb.checked.toString();
di.selectedForExport = cb.checked;
}
was working fine before the upgrade.
(I have also upgraded Jquery from 1.7.1 => 1.9.1)