When I set the cell disable property to true the disabled attribute on the TD HTML element does not get created.
var grid = $("#" + GRID).data("kendoGrid");
var gridRow = grid.current().closest("tr");
gridRow.cells[0].disabled = true;
If you look via the debugger the cells disabled property is set to true after the above code is executed however the TD table element for the cell does NOT contain the disabled class/attribute, hence it is not rendered as disabled.
How do you disable a cell in the grid using javascript after the grid has been initially rendered?
var grid = $("#" + GRID).data("kendoGrid");
var gridRow = grid.current().closest("tr");
gridRow.cells[0].disabled = true;
If you look via the debugger the cells disabled property is set to true after the above code is executed however the TD table element for the cell does NOT contain the disabled class/attribute, hence it is not rendered as disabled.
How do you disable a cell in the grid using javascript after the grid has been initially rendered?