Hi
How to get the selected row data on Change event of the Kendo Gridd as follows
I used to get that in Telerik grid by using the following
But somehow the parameter 'e' is not same in case of Kendo UI.
Also the below statement is also not working inside the above function which used to work with Telerik grid.
Please advise where I am going wrong.
How to get the selected row data on Change event of the Kendo Gridd as follows
.Events(events => events.Change("Grid_OnRowSelectUID"))
I used to get that in Telerik grid by using the following
Grid_OnRowSelectUID = function (e) {
var row = e.row;
RowSelectUid = row.firstChild.innerText;
}
But somehow the parameter 'e' is not same in case of Kendo UI.
Also the below statement is also not working inside the above function which used to work with Telerik grid.
var
grid = $(
this
).data(
"kendoGrid"
)
Please advise where I am going wrong.