tWebGroupConfig

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

 

Purpose

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.

 

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

Is the column 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 of instantiating struct types.