getFormRow(row)

Access the Most Recent User Modification for an example of using getFormRow().

For an Editable Table, retrieves the edited row specified by the index. Often the index is provided by the event object for the Editable Table. See Table Properties or form for information on making a Table editable.

Parameters

row

row index

Example

var changedRow = Table1.getFormRow(row);

Either syntax below can be used in component script:

getFormRow                 // unqualified
TableView1.getFormRow      // qualified

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