Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Panel
nameblue

Layout Tab

The tag describes the layout and the components of a tab.

...

Attributes

NameDescriptionValues
idUnique identifier.Any.
disableMakes the tab hiddenappear at the bottom of the screen if set to false. The default value is true.true , or false
preloadLoads the rows of the tab when the page loads. The default value is false.true , or false
componentsThe list of tab components.The list of the component IDs.

 

Examples

...

ids
widthThe width of the tab in percentage. The default value is 100%.<number>%
showheaderShows the tab header. The default value is true.true or false
showcolumnsShows the tab column names. The default value is true.true or false

Example

Expand
titleTab
Image Added

 

<tabs>
Code Block
themeEclipse
languagexml
title
Tabs
linenumberstrue
Tab
	<details>
    
<tab>
    <tabs>
<id>tabPaymentMethods</id> <disable>false</disable> <preload>true</preload> <components> <component> <id>cmpSelect</id> </component> <component> <id>cmpPaymentMethodName</id> </component> <component> <id>cmpPaymentMethodDescription</id> </component> <component> <id>cmpDefaultPaymentMethod</id> </component> </components> </tab> <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>
			<tab>
				<id>tabSchemes</id>
				<disable>true</disable>
				<preload>true</preload>
				<showheader>false</showheader>
				<components>
					<component><id>cmpSelect</id></component>
					<component><id>cmpName</id></component>
					<component><id>cmpSignUpDate</id></component>
					<component><id>cmpSignUpByUnit</id></component>
				</components>
			</tab>
		</tabs>
	</details>