The following is the basic syntax of the column tag :
<COLUMN editable = "yes"|"no">
The column tag can be expanded with the following elements:
<COLUMN name=name> <TITLE>title</TITLE> <DEFAULTWIDTH>width</DEFAULTWIDTH> <DATACLASS>class_name</DATACLASS> <ATTRIBUTE>attribute_name</ATTRIBUTE> <ITEM></ITEM> </COLUMN> | ||
ATTRIBUTE | VALUE | DESCRIPTION |
<TITLE> | title | Displays the column
header.
The title defines the key for loading the text string from the resource bundle. If the string is not found, the title string will appear as it does in the Panel Definition Markup Language (PDML) source file. This tag is required. |
<DEFAULTWIDTH> | width | Expresses the width of the column in logical units. If the tag is omitted, columns will have equal widths. |
<DATACLASS> | class_name | Supplies the data for the column by using the DataBean interface. |
<ATTRIBUTE> | attribute_name | Contains
the data for the column. If the dataclass tag is used, the attribute tag must
be used.
|
<ITEM> | See the item tag. |