Categories | Question details Back To List | ||
dhmtlx tree grid I have a grid in which my first column type is tree. I am getting the tree properly but tree column is editable while I want it as non editable field. is it possible Answer posted by Support on Sep 19, 2008 04:02 You can try to use onEditCell event handler in order to deny editing in the "tree" column. For example if "tree" is the first column: mygrid.attachEvent("onEditCell",function(stage,id,index){ if(index==0) return false /*deny editing*/ return true }) |