djContentPane - Dojo Content Pane
Provides content for a container.
Category
Extension LibrarySyntax
<xe:djContentPane attributes>content</xe:djContentPane>
Property | Description |
---|---|
id | Defaults to djContentPane1 , djContentPane2 ,
and so on. |
Category | Properties |
---|---|
accessibility | title, waiRole, waiState |
basics | binding, dir, errorMessage, extractContent, href, id, lang, loaded, loadingMessage, partialRefresh, preload, preventCache, refreshOnShow, rendered, rendererType |
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 |
styling | disableTheme, style, styleClass, themeId |
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>