xfgrSetColumnProps
xfgrSetColumnProps (t_tableName t_colName[ ?visible {t|nil} ] [ ?enable { t|nil } ] [ ?valuet_value] [ ?defValuet_defValue] [ ?labelt_label] [ ?validValuesl_values]) =>t/ nil
Description
Sets properties of a column of a table. You can use this function from the xFGR Create form customization callback functions.
Arguments
Example
Sets properties of a column of a table.
procedure(tableValueChanged(tableName row colName value prevValue) when(tableName == "myTable" && colName == "myColumn" xfgrSetColumnProps("myTable" "myColumn" ?visible t ?label "NewLabel") ) ) ;;xFGR Create form customization callback. It is triggered when cell is updated. xfgrTableCellValueChangedCB("r" "tableValueChanged")
Return to top