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

Targetable messages with severity levels


We sometimes need to target a FacesMessage instance to a specific component. For example, suppose we have p:growl and p:messages/p:message tags on the same page and need to display some messages as p:growl and some as p:message. PrimeFaces has a grouping feature for messages to associate a notification component to specific command components so that messages created as a result of an action will be displayed in the associated messages or the growl tags.

In this recipe, we will develop samples for targetable messages. Furthermore, we will discuss the severity attribute. By means of severity, we can display messages depending on their severities.

How to do it…

Let's use one p:messages tag and two p:growl tags, as shown in the following code snippet:

<h:panelGroup id="msg1">
  <p:messages for="save" showDetail="true"/>
  <p:growl for="change" showDetail="true"/>
  <p:growl globalOnly="true" showDetail="true"/>
</h:panelGroup&gt...