how can I make a cell not editable, only one cel

hello,how can I make a cell not editable, only one cell. Thank you in advance

from xml:
first column data

Using setDisabled() method (make sure that the needed cell is loaded):
mygrid.cells(rowId,colInd).setDisabled(true);

Thank you! It’s OK