Read-only tree cells?

Hi there,

I need to disable editing on treegrid cells. I am using a treegrid with the following column types:

grid.setColTypes(“tree,ro,ro,ro,ro”);

From what I understand, the type of my first column must be ‘tree’ in order for that column to display as a tree. Is there a way to specify this column as a read only tree? I looked at the base types, but I didn’t see anything: docs.dhtmlx.com/doku.php?id=dhtm … base_types

Thanks!

You can use:

treeGrid.enableTreeCellEdit(false)

Thanks, that did it!