Skip to content

tWebGroupConfig

See Also: tWebRow, tWebGroupHeader, String, Declaring Variables, Struct

Purpose

tWebGroupConfig is a structured type that is used to represent information about grouping in the Web Application Framework lists (cWebList) and grids (cWebGrid).

You will only need to provide this data for manual grouping. See WebList Grouping for details.

Type Declaration

Struct tWebGroupConfig
    Integer iColumnId
    String sLabel
    Boolean bReverse
End_Struct

Struct Members

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

Indicates if the column is reversed (only used in automatic, not manual grouping).

Syntax

Use tWebRow.pkg

tWebGroupConfig {variableName}

Declaring Variables

To declare tWebGroupConfig variables, use the name of the type (tWebGroupConfig) followed by the variable name.

tWebGroupConfig MyGroupConfig

See struct variables for more details on instantiating struct types.