<LAYOUT> : Layout

ROLE

This element defines a layout for the perspective : it is the fitting of the various views from the perspective. Several layouts can be defined for a perspective.

ATTRIBUTES

<!ATTLIST LAYOUT
	  id ID #REQUIRED>
Attribute Mand. Description Default
id yes Identifier of the layout.  

ELEMENTS

<!ELEMENT LAYOUT 
	  (ZONE*,
	   EDITOR_AREA?,
	   ACTION_SET?)>
Element Mand. Mult. Description
ZONE no yes Zones being able to contain views.
EDITOR_AREA no no Indicates if editor is visible or not in the perspective.
ACTION_SET no no Element indicates the actionSet's id of dashboard to primary module.

SAMPLE

<LAYOUT id="layout1">
	<ZONE id="zone1" position="LEFT" ratio="0,25">
		<VIEW id="zone1.view"/>
	</ZONE>
	<ZONE id="zone2" position="BOTTOM" relativeZone="zone1" ratio="0,75">
		<VIEW id="zone2.view"/>
	</ZONE>
	<EDITOR_AREA visible="true"/>
	<ACTION_SET id="actionSetId"/>
</LAYOUT>