TABLE item definition
Defines attributes for a table layout tag, in a grid-based layout.
Syntax
TABLE layout-tag: item-name [ , attribute-list ] ;
- layout-tag is an identifier that defines the name of the layout tag.
- item-name identifies the form item.
- attribute-list defines the aspect and behavior of the form item.
Form attributes
AGGREGATETEXT, COMMENT, DOUBLECLICK, FONTPITCH, HEIGHT, HIDDEN, STYLE, TAG, UNHIDABLECOLUMNS, UNMOVABLECOLUMNS, UNSIZABLECOLUMNS, UNSORTABLECOLUMNS, WANTFIXEDPAGESIZE, WIDTH.
Style attributes
Common: backgroundColor, border, fontFamily, fontSize, fontStyle, fontWeight, localAccelerators, showAcceleratorInToolTip, textColor, textDecoration.
Class-specific: allowWebSelection, forceDefaultSettings, headerAlignment, headerHidden, highlightColor, highlightCurrentCell, highlightCurrentRow, highlightTextColor, resizeFillsEmptySpace, reduceFilter, rightFrozenColumns, rowActionTrigger, showGrid, summaryLineAlwaysAtBottom, tableType.
Usage
Define a TABLE element in the ATTRIBUTES section, to
configure a table layouted with a <TABLE >
layout tag.
For more details about this item type, see TABLE item type.
Example
LAYOUT
GRID
{
<TABLE t1 >
[c1 |c2 |c3 ]
[c1 |c2 |c3 ]
...
}
END
END
ATTRIBUTES
TABLE t1: table1, UNSORTABLECOLUMNS;
...