See Also: tWebRow, tWebGroupHeader, String, Declaring Variables, Struct
tWebGroupConfig is a structured type that is used to represent information about grouping in Web Application Framework lists (cWebList) and grids (cWebGrid).
You will only need to provide this data for manual grouping. See WebList Grouping for details.
Struct tWebGroupConfig
Integer iColumnId
String sLabel
Boolean bReverse
End_Struct
iColumnId
The column id matching piColumnId of cWebColumn (only used in automatic, not manual grouping).
sLabel
A label that is displayed in the group header. One label per grouping level needs to be provided.
bReverse
Is the column reversed (only used in automatic, not manual grouping)
Use tWebRow.pkg
:
tWebGroupConfig {variableName}
To declare tWebGroupConfig variables, use the name of the type (tWebGroupConfig) followed by the variable name.
tWebGroupConfig MyGroupConfig
See struct variables for more details of instantiating struct types.