djContentPane - Dojo Content Pane

Provides content for a container.

Category

Extension Library

Syntax

<xe:djContentPane attributes>content</xe:djContentPane>
Table 1. Essential properties
Property Description
id Defaults to djContentPane1, djContentPane2, and so on.

Usage

This is a Dojo control.

This control simply renders its content.

This control is not tested against the latest accessibility standards. The recommended accessible path is the Panel or Division control.

Examples

This example displays one content pane or another depending on the user organization.
<xe:djContentPane id="djContentPane1">IBM content pane
	<xe:this.rendered>
		<![CDATA[#{javascript:session.getUserNameObject().getOrganization() == "IBM"}]]>
	</xe:this.rendered>
</xe:djContentPane>
<xe:djContentPane id="djContentPane2">Non-IBM content pane
	<xe:this.rendered>
		<![CDATA[#{javascript:session.getUserNameObject().getOrganization() != "IBM"}]]>
	</xe:this.rendered>
</xe:djContentPane>