Layout Section

Layout Section

The tag describes the layout of a part/division of a screen area.

Attributes

NameDescriptionValues
idUnique Identifier.Any
nameThe name that will appear at the top of the section.Any
instructionInformation that appear on the top of the sectionAny
subsectionsUsed when the section must be divided into subsectionsA list of subsections.
listUsed when the section contains a list.A list of components
disableMakes the section hidden if set to true. The default value is true.true or false
leftContains the components that will appear on the left side of the section.A list of components
rightContains the components that will appear on the right side of the section.A list of components
visibilityconditionsThe conditions that should be met in order for the section to be displayed.'[[pagefunction, datatype, datapath ]]' operator(==,!=) 'value'
visiblemodesThe modes that the section is visible. The section is visible in every mode by default.new, edit, read
widthThe width percentage of the section.Any valid percentage: [1-100]% (i.e. 50%)

Example

 Section

 

Section
<section>
	<id>secMainInformation</id>
	<name>Main information</name>
	<disable>false</disable>
	<instruction>Create and activate an Accounts Receivable Definition to set the business rules that will be used for all created accounts. Only one definition is allowed to be active. Begin by giving a unique name and alternative code to this definition.</instruction>
	<left>
		<components>
			<component><id>file:general/name.xml</id></component>
			<component><id>file:general/altCode.xml</id></component>
			<component><id>cmpState</id></component>
		</components>
	</left>
	<right>
		<components>
			<component><id>file:general/description.xml</id></component>
		</components>
	</right>
</section>