djBorderPane - Dojo Border Pane

Provides content for one pane in a border container.

Category

Extension Library

Syntax

<xe:djBorderPane attributes>content</xe:djBorderPane>
Table 1. Essential properties
Property Description
id Defaults to djBorderPane1, djBorderPane2, and so on.
region Specify as top, bottom, leading, trailing, left, right, or center.

Usage

This is a Dojo control.

A BorderContainer control holds BorderPane controls. Each pane covers a specified region in the container.

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

Examples

This example shows five Border Pane controls inside a Border Container control.
<xe:djBorderContainer id="djBorderContainer1" style="width:400px; height:200px;">
	<xe:djBorderPane id="djBorderPane1" region="top">top</xe:djBorderPane>
	<xe:djBorderPane id="djBorderPane2" region="center">center</xe:djBorderPane>
	<xe:djBorderPane id="djBorderPane3" region="bottom">bottom</xe:djBorderPane>
	<xe:djBorderPane id="djBorderPane4" region="left">left</xe:djBorderPane>
	<xe:djBorderPane id="djBorderPane5" region="right">right</xe:djBorderPane>
</xe:djBorderContainer>