The following is the basic syntax of the table tag :
<TABLE name=name selection= "single" | "singleinterval" | "multi-interval">
where name identifies the table programmatically.
The table tag can be expanded with the following elements:
<TABLE name=name selection="single" | "singleinterval" | "multi-interval"> <LOCATION>location</LOCATION> <SIZE>size</SIZE> <COLUMN></COLUMN> <SELECTED></SELECTED> <DESELECTED></DESELECTED> <DOUBLECLICK>class_name</DOUBLECLICK> <FLYOVER>helptext</FLYOVER> <HELPALIAS>component_name</HELPALIAS> </TABLE> | ||
ATTRIBUTE | VALUE | DESCRIPTION |
<LOCATION> | location | Expresses the
x- and y-coordinates of the panel's location from the top left corner in logical
units. This tag is required. |
<SIZE> | size | Expresses the width
and height, respectively, of the component in logical units. This tag is required. |
<COLUMN> | See the column tag. | |
<SELECTED> | See the selected tag. | |
<DESELECTED> | See the deselected tag. | |
<DOUBLECLICK> | class_name | Signals the DoubleClickListener interface class when the user double-clicks on an entry in the table. |
<FLYOVER> | helptext | Should be displayed
when context help is requested for this component.
Helptext defines the key for loading the text string from the resource bundle. If the string is not found, the helptext string will appear as it does in th Panel Definition Markup Language (PDML) source file. |
<HELPALIAS> | component_name | Should be displayed when context help is requested for this component. |