ListCaption.ColumnEditable

Syntax

ColumnEditable: Boolean;

Description

The ColumnEditable property determines whether title column can be edited.

Comments

Use JSON or thesetColumnEditable method to set the property value and the getColumnEditable method to get the property value.

Example

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:

ListCaption