Versions Compared

Key

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

Description

This tag is used to define the screen areas that the main area will horizontally be divided into. 

Attributes

NameDescriptionValue
leftscreenareaTakes the left side of the main area if there is a rightscreenarea otherwise it expands to the entire main area's width. Only one leftscreenarea can exist in a screenarea.

A list of sections that will be dispayed displayed in the left screen area

rightscreenareaTakes the right side of the main area if there is a leftscreenarea otherwise it takes the left side and covers only 50% of the entire main area's width. Only one rightscreenarea can exist in a screenare.A list of sections that will be dispayed displayed in the right screen area

...

ExamplesExamples

Expand

 

Main area with two screen areas, the first one having left and right screen area.

Image Removed

codetrue
titleScreenarea

Image Added

Code Block
themeEclipse
languagexml
title
Screenareaslinenumbers
screenareas
<screenareas>
	<screenarea>
    	<leftscreenarea>
        	<sections>
            	<section><id>secMainInformation</id></section>
                <section><id>secLogInformation</id></section> 
			</sections>
		</leftscreenarea>
        <rightscreenarea>
        	<sections>
        		<section><id>secAccountsReceivableInformation</id></section>
        		<section><id>secBillingRunInformation</id></section> 
        	</sections>
        </rightscreenarea>
	</screenarea>
    <screenarea>
        <leftscreenarea>
        	<sections>
        		<section><id>secSummaryBillItems</id></section> 
        	</sections>
        </leftscreenarea>
	</screenarea>
</screenareas>