Attribute | Mand. | Description | Default |
id | no | TABS.id | |
template | no | TABS.template | |
selectedTab | no | Identifier of the selected tab. | |
closable | no | Indicates whether tabs are closable or not. | false |
font | no | TABS.font | |
color | no | TABS.color | |
fontColor | no | TABS.fontColor | |
selectedColor | no | Color of the selected tab. |
<!ELEMENT TABS (TAB*, CONSTRAINT?, DATA*)> |
Element | Mand. | Mult. | Description |
TAB | no | yes | List of tabs. |
CONSTRAINT | no | no | Positioning constraint of the tabs list. |
DATA | no | yes | TABS.DATA |
<!-- Tabs --> <TABS> <!-- First tab: contains a form --> <TAB label="Form"> <FORM id="_form"> <!-- Content of the form --> </FORM> </TAB> <!-- Second tab: contains a tree --> <TAB label="Tree"> <TREE id="_tree"> <!-- Content of the tree --> </TREE> </TAB> <TAB label="Map"> <MAP id="_map"> <!-- Content of the map --> </MAP> </TAB> </TABS> |
![]() |