Categories | Question details Back To List | ||
dhtmlxTreeGrid Thanks a lot for such a prompt reply. I implemented your suggestion to use mygrid.enableTreeCellEdit(false); , but this makes all the nodes in the tree as non-editable. My requirement is to make some of the nodes in the tree as read-only while i should still to able to edit remaining nodes in the tree. Thanks, Trupti Answer posted by dhxSupport on Aug 04, 2009 05:51 You can disable editor of the necessary cell with setDisabled(true) method: mygrid.cellByInd(rowId,cellIndex).setDisabled(true) |