Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by vikas on Sep 18, 2008 02:39
open dhtmlx forum
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

})