May 2015
Beginner to intermediate
412 pages
8h 44m
English
A horizontal grouping component, toolbar can be used to group commands and other components. In this recipe, we will create a toolbar with two groups that bundle buttons and menu items.
A definition of a toolbar with multiple groups would be as follows:
<p:toolbar> <p:toolbarGroup align="left"> <p:commandButton type="push" value="New" icon="ui-icon-document" /> <p:commandButton type="push" value="Open" icon="ui-icon-folder-open"/> <p:separator /> <p:commandButton type="push" title="Save" icon="ui-icon-disk"/> <p:commandButton type="push" title="Delete" icon="ui-icon-trash"/> <p:commandButton type="push" title="Print" icon="ui-icon-print"/> </p:toolbarGroup> <p:toolbarGroup align="right"> <p:menuButton ...
Read now
Unlock full access