panelContainer

Description: A panel container element. A set of inner panels contained within each other. All panel containers can be added to this component as child elements (tree, grid, panel, accordion, tabs).

JavaDoc: Click here

Body content: JSP content.

Attributes:

Name Description Data type Required Default value
id The id for this element. String Yes -
panelContainerDefintion The whole panel definition. PanelContainerDefintion No -
width The panel width. Integer No Fit area
height The panel height. Integer No Auto
title The panel title. String No -
border Render a border. Boolean No true
split Allow a splitter to exists to resize the panels Boolean No True
resizable Is the panel resizable Boolean No False
collapsible Is the panel collapsible Boolean No False
collapsed Render the panel collapsed to start with Boolean No False
align The panel alignment PanelAlignment No FIT

Examples:

<dif:document>
    <dif:panelContainer id="tabs" panelContainerDefinition="${stage.panels}">
        <dif:panel id="tab1" title="Tab #1">
            ...
        </dif:panel>
        <dif:panel id="tab2" title="Tab #2">
            ...
        </dif:panel>
        <dif:panel id="tab3" title="Tab #3">
            ...
        </dif:panel>
        <dif:panel id="tab4" title="Tab#4">
            ...
        </dif:panel>
        <dif:panel id="tab5" title="Tab#5">
            ...
        </dif:panel>
    </dif:panelContainer>
</dif:document>

See also:

Back to tag reference