Versions Compared

Key

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

Layout Component

In the definition file we define the components and tabs of the definition file.

Child pages (Children Display)

Attributes

NameDescriptionValue
id

Unique Identifier.

Any
colspanThe number of columns the component spans.numeric
rowspanThe number of rows the component spansnumeric
newrowMoves the component to the next rowtrue or false
visibilityconditionsThe conditions that should be met in order to display the component.'[[pagefunction, datatype, datapath ]]' operator(==,!=) 'value'

Example

Expand
titleDefinition File
Image Added

 

Code Block
themeEclipse
languagexml
titleDefinition File
<section>
	<id>secMainInformation</id>
	<name>Main Information</name>
	...
		<left>
			<columns>3</columns>
			<components>
				<component><id>file:general/code.xml</id></component>
				<component><id>cmpBrand</id></component>
				<component>
					<id>file:general/description_rowspan_3.xml</id>
					<rowspan>3</rowspan>
				</component>
				<component><id>file:general/altCode.xml</id></component>
				<component><id>cmpFamily</id></component>
				<component>
					<id>cmpType</id>
					<newrow>true</newrow>
				</component>
				<component><id>file:platform/vatRate.xml</id></component>
				<component>
					<id>cmpViewCharacteristics</id>
					<newrow>true</newrow>
					<colspan>3</colspan>
				</component>
			</components>
		</left>
	</section>