class %ZEN.Auxiliary.gridRow
extends %ZEN.Component.object
Defines characteristics for a row within a %ZEN.component.grid.
Parameters
|
Properties
|
Methods
|
Queries
|
Indices
|
ForeignKeys
|
Triggers
|
|
10
|
|
|
|
|
|
property format
as %ZEN.Datatype.string;
Format to apply to cells in this row.
This is a DeepSee format string: e.g., "###.##"
This format is applied before the column format.
property height
as %ZEN.Datatype.length;
Height of row. This is used for the height attribute of
the element for this row;
property hidden
as %ZEN.Datatype.boolean [ InitialExpression = 0 ];
If true, this row is not displayed.
property label
as %ZEN.Datatype.caption;
Label displayed for column. This overrides the value from a data controller.
property priority
as %ZEN.Datatype.integer(MAXVAL=2,MINVAL=0) [ InitialExpression = 1 ];
Priority of this row.
This lets you control the precedence of row-based attributes (style, format, value).
By default (when the priority values are equal) column-based attributes have
precedence over row-based attributes.
If the row has a higher valued priority, then it takes precedence.
property readOnly
as %ZEN.Datatype.boolean [ InitialExpression = 0 ];
If true, cells in this row are readOnly.
property rowName
as %ZEN.Datatype.string;
Logical name of row.
property style
as %ZEN.Datatype.style;
Style to apply to cells in this row.
This is a CSS style string: e.g., "color: red;"
This style is applied before the column style.
property title
as %ZEN.Datatype.caption;
Help text displayed when mouse hovers over this row.
property value
as %ZEN.Datatype.string;
Default value to apply to (empty) cells in this row.
This value is applied before the column value.