djBorderPane - Dojo Border Pane
Provides content for one pane in a border container.
Category
Extension LibrarySyntax
<xe:djBorderPane attributes>content</xe:djBorderPane>
Property | Description |
---|---|
id | Defaults to djBorderPane1 , djBorderPane2 ,
and so on. |
region | Specify as top , bottom , leading , trailing , left , right ,
or center . |
Category | Properties |
---|---|
accessibility | title, waiRole, waiState |
basics | binding, dir, errorMessage, extractContent, href, id, lang, loaded, loadingMessage, maxSize, minSize, partialRefresh, preload, preventCache, refreshOnShow, rendered, rendererType, splitter |
dojo | dojoAttributes, dojoType, dragRestriction, parseOnLoad, tooltip |
events | onBlur, onClick, onClose, onContentError, onDblClick, onDownloadEnd, onDownloadError, onDownloadStart, onFocus, onHide, onKeyDown, onKeyPress, onKeyUp, onLoad, onMouseDown, onMouseEnter, onMouseLeave, onMouseMove, onMouseOut, onMouseOver, onMouseUp, onShow, onUnload |
format | layoutPriority, region |
styling | disableTheme, style, styleClass, themeId |
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>