The following code has been used to get the selected row in the Kendo Grid, using kendo.all.min.js version 2014.1.328.
var gview = $("#grid").data("kendoGrid");
var row = gview.dataItem(gview.select());
The code no longer works with kendo.all.min.js version 2014.3.111.9. The .select() function no longer exists.
Is this a bug or done on purpose? If so what's the best way to do this now?
var gview = $("#grid").data("kendoGrid");
var row = gview.dataItem(gview.select());
The code no longer works with kendo.all.min.js version 2014.3.111.9. The .select() function no longer exists.
Is this a bug or done on purpose? If so what's the best way to do this now?