Skip to end of metadata
Go to start of metadata
You are viewing an old version of this page. View the current version.
Compare with Current
View Page History
« Previous
Version 20
Next »
The tag describes the layout and the components of a tab.
Attributes
Name | Description | Values |
---|
id | Unique identifier. | Any |
disable | Makes the tab appear at the bottom of the screen if set to false. The default value is true. | true or false |
preload | Loads the rows of the tab when the page loads. | true or false |
components | The list of tab components. | The list of the component ids |
width | The width of the tab in percentage. | <number>% |
showheader | Shows the tab header. | true or false |
Example
Tab
<tabs>
<tab>
<id>tabCategories</id>
<disable>false</disable>
<preload>true</preload>
<components>
<component><id>cmpSelect</id></component>
<component><id>cmpCode</id></component>
<component><id>cmpCategoryName</id></component>
<component><id>cmpCategoryPath</id></component>
</components>
</tab>
<tab>
<id>file:networkmanagement/allowedOrgUnits.xml</id>
<disable>false</disable>
<preload>false</preload>
<components>
<component><id>cmpSelect</id></component>
<component><id>cmpCommunity</id></component>
<component><id>cmpGroup</id></component>
<component><id>cmpUnit</id></component>
</components>
</tab>
</tabs>