xfgrSetCellProps
xfgrSetCellProps(t_tableName x_rowNumber t_colName[ ?enable {t|nil} ] [ ?valuet_value] [ ?bgColort_bgColor] [ ?textColort_color]) => t/ nil
Description
Sets properties of a cell of a table. The valid properties are enable, value, bgColor, and textColor. You can use this function from the xFGR Create form customization callback functions.
Arguments
Value Returned
Example
Sets properties of a cell of a table.
procedure(tableValueChanged(tableName row colName value prevValue) when(tableName == "myTable" xfgrSetCellProps("myTable" row colName ?enable t ?textColor "red" ?bgColor "white")
)
)
;;xFGR Create Form customization callback. It is triggered when cell is updated. xfgrTableCellValueChangedCB("r" "tableValueChanged")
Return to top