Grid row both editable and non editable

I have loaded the grid with 5 column and 10 rows. Column type is set as combo, ed, ed, txt, ra. Of the 10 rows getting loaded i want to make 5 rows as non-editable/read only while the other 5 rows should be editable. Is there any property at row level to make it read only, can we set this property in XML at tag.

You can disable cell for edit with setDisabled() method:

mygrid.cellById(rowId,cellIndex).setDisabled(true)

Also you can define cell type with “type” attribute of the “cell” tag in xml:

Also you can lock for edit:
docs.dhtmlx.com/doku.php?id=dhtm … ct_lockrow