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
Value Returned
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