ShowColumn
This function will show specified column in specified table.
The ShowColumn function does not work when the table is displayed in form mode. In this case, you can use ShowField in the table rule or in foreachrow loop
Syntax
ShowColumn("tableName[>tableName>...]","fieldName");
Function arguments
- tableName – (String) The name of the table to in which the column should be shown
- fieldName – (String) The name of the field in table, column with this field will be shown
Return value
This function returns Boolean. This function always returns true
Examples
Example 1: This will show column named 'Quantity’ in Orders table.
ShowColumn("Orders","Quantity");
Example 2: This will show column named 'Quantity’ in Positions table that is added inside Orders table.
ShowColumn("Orders>Positions","Quantity");