Create new RichFaces Documentation Jira issue

This will launch the RichFaces Jira page - to complete your feedback please login if needed, and submit the Jira.

JBoss.orgCommunity Documentation

6.10.18.  < rich:toolBarGroup > available since 3.0.0

expand all
6.10.18.1. Description
6.10.18.2. Key Features
6.10.18.3. Details of Usage
6.10.18.4. Reference Data
6.10.18.5. Relevant Resources Links

A group of items inside a tool bar.


A toolBarGroup is a wrapper component that groups toolBar content and facilitates creation of menu and tool bars. All components defined inside are located on a stylized bar with a possibility to group, arrange on the both bar sides, and place predefined separators between them.

Separators are located between components with the help of the "itemSeparator" attribute with four predefined values:

To control the group location inside, use the "location" attribute with "left" (DEFAULT) and "right" values.

Example:


...
<rich:toolBar itemSeparator="disc" width="500">
        <rich:toolBarGroup itemSeparator="line">
                <h:commandLink value="Command 1.1"/>
                <h:commandLink value="Command 2.1"/>
        </rich:toolBarGroup>
        <rich:toolBarGroup itemSeparator="line" location="right">
                <h:commandLink value="Command 1.2"/>
                <h:commandLink value="Command 2.2"/>
        </rich:toolBarGroup>
</rich:toolBar>
...

The code result is the following:


Table of <rich:toolBarGroup> attributes.


You can find all necessary information about style classes redefinition in
Definition of Custom Style Classes section.

Some additional information about usage of component can be found on the component Live Demo page.