getHiddenColumnValue(col,row)
|
For a hidden column (often a primary key column) in an Editable Table, retrieves the value in the specified row of the hidden column.
Example
for(var i=0; i<TableView1.table.length; i++) {
if(TableView1.getFormRow(i).rowState == CHANGED) {
var hiddenValue = TableView1.getHiddenColumnValue("columnName", i);
}
}
|
Either syntax below can be used in component script:
For onInit/onRefresh scripts, and for component and property scripts on other components, the second (qualified) form is required. |