grid disable cell

Hello!



Is very urgent!

I want to disable one cell of a specific row. I have this:

-----

grid.forEachRow(function(row){

    grid.forEachCell(row, function©{

        c.setDisabled(true);

    });

});

-----



But I want to disable a cell of index 4 and I don’t want go all cells!!



can I do some like grid.cells(row, 4).cell.disable(true) ??

To disable only necessary cell you can use:
grid.cellById(ROW_ID,COLUMN_INDEX).setDisabled(true);

Thanks