edit

Table Properties to set the property without using script.

Specifies that users can edit the values in existing rows of an Editable Table. See Access User-Modified Data for more details. (Use form to make a Table editable.)

Type

Boolean

true: allow editing
false: do not allow editing

Example

TableView1.edit = true;

Either syntax below can be used in component script:

edit                 // unqualified
TableView1.edit      // qualified

For onInit/onRefresh scripts, and for component and property scripts on other components, the second (qualified) form is required.