Layout View

Layout View

This tag defines the layout of the information displayed in the main area.

Attributes

NameDescriptionValues
type

Defines the layout of the screenareas displayed in the main area.

Areas view allows you to create your own layout dividing the main area into multiple horizontal screenareas and each one of them into right and left screenareas.

List view puts the one section on the top of the other dividing by this way the main area into multiple horizontal screenareas.

areas, list
screenareasContains the screen areas that the main area will be divided into.leftscreenarea, rightscreenarea

Example

 Areas View

 

Areas View
<view>
	<type>areas</type>
    	<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>
</view>
 List View

 

List View
<view>
	<type>list</type>
    	<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>
</view>