Book Image

Primefaces Cookbook Second Edition

Book Image

Primefaces Cookbook Second Edition

Overview of this book

Table of Contents (20 chapters)
PrimeFaces Cookbook Second Edition
Credits
Foreword
Foreword
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Breadcrumb – providing contextual information about page hierarchy


Breadcrumb is a navigation component that provides contextual information about the page hierarchy. It allows users to keep track of their locations within the workflow.

In this recipe, we will develop a simple breadcrumb with a handy configuration attribute.

How to do it…

The breadcrumb component is represented as the p:breadCrumb tag with nested menu items. We will use the same CDI bean as in the Statically and dynamically positioned menus recipe of this chapter. This is shown in the following code:

<p:breadCrumb>
  <p:menuitem value="PrimeFaces" url="http://primefaces.org"/>
  <p:menuitem value="jQuery" url="http://jquery.com"/>
  <p:menuitem value="Yahoo UI" url="http://yuilibrary.com"/>
  <p:menuitem value="Save"
    actionListener="#{positionedMenuBean.save}"
    update="growl"/>
  <p:menuitem value="Update"
    actionListener="#{positionedMenuBean.update}"
    update="growl"/>
</p...