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:
$("#grid").data("kendoGrid").dataItem("tbody tr[data-uid='0656dd82-93c5-4159-b4f1-ab62cddce133']").columnName;
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:
$("#grid").data("kendoGrid").dataItem("tbody tr.k-grid-edit-row").columnName;