TABLE item definition
Defines attributes for a table layout tag.
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, it is optional but recommended.
- attribute-list defines the aspect and behavior of the form item.
Form attributes
AGGREGATETEXT
,
DOUBLECLICK
, COMMENT
, FLIPPED
, FONTPITCH
, HEIGHT
, HIDDEN
, STRETCHCOLUMNS
, STRETCH
, STYLE
, TAG
, UNHIDABLECOLUMNS
, UNMOVABLECOLUMNS
, UNSIZABLECOLUMNS
, UNSORTABLECOLUMNS
, WANTFIXEDPAGESIZE
, WIDTH
.
Style attributes
Common: backgroundColor
, border
, fontFamily
, fontSize
, fontStyle
, fontWeight
, textColor
, textDecoration
.
Class-specific: allowWebSelection
, alternateRows
, forceDefaultSettings
, headerAlignment
, headerHidden
, headerPosition
, highlightColor
, highlightCurrentCell
, highlightCurrentRow
, highlightTextColor
, leftFrozenColumns
, reduceFilter
, resizeFillsEmptySpace
, rightFrozenColumns
, rowActionTrigger
, rowAspect
, rowHover
, showGrid
, 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;
...