Versions Compared

Key

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

...

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

Example

Expand
titleComponents

Image Added

Code Block
themeEclipse
languagexml
titleComponents
<components>
 
	...

	<component>
		<visibilityconditions>'[[getValue,java.lang.String,isCompany]]'!='1'</visibilityconditions>
		<id>cmpTitle</id>
		<name>Title</name>
		<elements>
			<label>
				<id>lblTitle</id>
				<value>Title</value>
			</label>
			<textbox>
				<id>txtTitle</id>
				<datapath>title</datapath>
				<size>smaller</size>
			</textbox>
		</elements>
	</component>

	<component>
		<visibilityconditions>'[[getValue,java.lang.String,isCompany]]'!='1'</visibilityconditions>
		<id>cmpFirstName</id>
		<name>FirstName</name>
		<elements>
			<label>
				<id>lblFirstName</id>
				<value>First name</value>
			</label>
			<textbox>
				<id>txtFirstName</id>
				<datapath>firstName</datapath>
			</textbox>
		</elements>
	</component>
 
	...
 
</components>