Versions Compared

Key

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

Definition Main

This tag is used to define the main area layout.

Attributes

Name
Description
Value
componentsA list of components that define the buttons in the main menu.Component

Example

Expand
titleMain

Code Block
themeEclipse
languagexml
titleMain
<main>
	<components>
		<component>
			<id>cmpUsedForProvisioning</id>
			<name>Used For Provisioning</name>
			<elements>
				<label>
					<id>lblUsedForProvisioning</id>
					<value>Used For Provisioning</value>
				</label>
				<checkbox>
					<id>chkUsedForProvisioning</id>
					<datapath>type/isForProvision</datapath>
					<truevalue>1</truevalue>
					<truelabel>Yes</truelabel>
					<falselabel>No</falselabel>
					<readonly>true</readonly>
				</checkbox>
			</elements>
		</component>
 
		...
 
		<component>
			<id>cmpPricePlansDrilldown</id>
			<name>Price Plans</name>
			<elements>
				<drilldown>
					<id>ddPricePland</id>
					<tabid>tabPricePlans</tabid>
				</drilldown>
			</elements>
		</component>
 
		...
 
	</components>
</main>