As part of the Kendo grid update, some of my old code does not seem to work due to changes in implementation
I used events.Change to trigger a row click event (sample code below)
@(Html.Kendo().Grid(Model.BankSearchList).Name("Grid") .Events(events => { events.Change("onRowSelected"); events.DataBound("onGrindBound"); })
In my onRowSelected(e) method, I accessed the key element of a column using
e.row.cells[0].innerHTML
e.row is now undefined. What is the correct way to use now? Using events.Change for a selected string sequence is the right way to do this?
javascript jquery kendo-ui kendo-asp.net-mvc kendo-grid
Keenuser
source share