ColumnEditable: Boolean;
The ColumnEditable property determines whether title column can be edited.
Use JSON or thesetColumnEditable method to set the property value and the getColumnEditable method to get the property value.
Executing the example requires the SimpleTreeList component with the Tree identifier (see Example of Creating the SimpleTreeList Component).
// Get title caps = Tree.getCaptions(); cap = caps.getCaptions()[0]; // Enable tree editing Tree.setEnableEdit(true); // Disable first column editing cap.setColumnEditable(false);
After executing the example only the second column is allowed to be edited.
See also: