insert

Table Properties to set the property without using script.

Specifies that users can insert new rows in an Editable Table. See Access User-Modified Data for more details. (Use form to make a Table editable.)

Type

Boolean

true: allow row insertion
false: do not allow row insertion

Example

TableView1.insert = true;

Either syntax below can be used in component script:

insert                 // unqualified
TableView1.insert      // qualified

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