Disabling editting for the tree Column(First Column) in Tree

Is there a way to make the tree column of the TreeGrid to be non-editable? All samples for TreeGrid seems to be editable.



Thanks,

Ben

You can disable edit operation for tree column by

    grid.enableTreeCellEdit(false);

Also, in common case, edit operation for any column can be disabled by attaching custom onEditCell handler.