Versions Compared

Key

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

...

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

Expand
titleLayout Tab
Image RemovedImage Added

 

Code Block
themeEclipse
languagexml
titleTab
	<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>