Is there a equivalent for below code in kendo grid:
var gridCell = $('.grid-row-selected td.grid-cell[data-name= ' + columnName + ']');
Above code is for the mvc grid, where it automatically gives HTML tag on grid-row-selected on selecting a cell.
You can get the cell value from the model of a grid.
Option 1:
Here
data-uid
is the Unique Id of the row of the column which you want to get.Option 2: If you are using editable Kendo grid,
k-grid-edit-row
class get's added to the selected row. So, you can get the selected row column value like below: