Layout Tab

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>