Skip to end of banner
Go to start of banner

Layout Tab

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 21 Next »

Layout Tab

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

Attributes

NameDescriptionValues
idUnique identifier.Any
disableMakes the tab appear 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
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

 Tab

 

Tab
	<details>
        <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>
  • No labels