JBoss.orgCommunity Documentation
A group of items inside a tool bar.
Fully skinnable with its child items
Grouping bar content
Easily place content on either side of tool bar using a predefined group layout
Predefined separators for menu items and groups
Any content inside
Table 6.309. rich : toolBarGroup attributes
Table 6.310. Component identification parameters
Name | Value |
---|---|
component-type | org.richfaces.ToolBarGroup |
component-class | org.richfaces.component.html.HtmlToolBarGroup |
component-family | org.richfaces.ToolBarGroup |
renderer-type | org.richfaces.ToolBarGroupRenderer |
tag-class | org.richfaces.taglib.ToolBarGroupTag |
To create the simplest variant on a page use the following syntax:
Example:
...
<rich:toolBar>
...
<rich:toolBarGroup>
<!--Set of action or other JSF components-->
</rich:toolBarGroup>
<rich:toolBarGroup>
<!--Set of action or other JSF components-->
</rich:toolBarGroup>
...
</rich:toolBar>
...
Example:
import org.richfaces.component.html.HtmlToolBarGroup;
...
HtmlToolBarGroup myToolBarGroup = new HtmlToolBarGroup();
...
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:
"none"
"line"
"square"
"disc"
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:
For skinnability implementation, the components use a style class redefinition method. Default style classes are mapped on skin parameters.
There are two ways to redefine the appearance of all <rich:toolBarGroup> components at once:
Redefine the corresponding skin parameters
Add to your style sheets style classes used by a <rich:toolBarGroup> component
It's possible to change styles of particular <rich:toolBarGroup> component. In this case you should create own style classes and use them in corresponding <rich:toolBarGroup> styleClass attributes. An example is placed below:
Example:
...
.myClass{
font-style: italic;
}
...
The "styleClass" attribute for <rich:toolBarGroup> is defined as it's shown in the example below:
Example:
<rich:toolBarGroup ... styleClass="myClass"/>
This is a result:
As it could be seen on the picture above,font style for first toolBarGroup was changed.
Some additional information about usage of component can be found on the component Live Demo page.