Product Documentation
Virtuoso Layout Suite SKILL Reference
Product Version IC23.1, November 2023

xfgrResetTable

xfgrResetTable( 
t_tableName
) 
=> t / nil

Description

Resets the contents of a table. This function is used from the xFGR Create form customization callback functions.

Arguments

t_tableName

The name of the table.

Value Returned

t

The function is successful.

nil

The function is not successful.

Example

Resets the contents of the specified table.

procedure(tableValueChanged(tableName row colName value prevValue)
    when(tableName == "myTable"
     xfgrResetTable("myTable")
)
)
;;xFGR Create Form customization callback. It is triggered when cell is updated.
xfgrTableCellValueChangedCB("r" "tableValueChanged")

Return to top
 ⠀
X