My JSF Books/Videos My JSF Tutorials OmniFaces/JSF PPTs
JSF 2.3 Tutorial
JSF Caching Tutorial
JSF Navigation Tutorial
JSF Scopes Tutorial
JSF Page Author Beginner's Guide
OmniFaces 2.3 Tutorial Examples
OmniFaces 2.2 Tutorial Examples
JSF Events Tutorial
OmniFaces Callbacks Usages
JSF State Tutorial
JSF and Design Patterns
JSF 2.3 New Features (2.3-m04)
Introduction to OmniFaces
25+ Reasons to use OmniFaces in JSF
OmniFaces Validators
OmniFaces Converters
JSF Design Patterns
Mastering OmniFaces
Reusable and less-verbose JSF code

My JSF Resources ...

Java EE Guardian
Member of JCG Program
Member MVB DZone
Blog curated on ZEEF
OmniFaces is an utility library for JSF, including PrimeFaces, RichFaces, ICEfaces ...

.

.

.

.

.

.

.

.


[OmniFaces Utilities] - Find the right JSF OmniFaces 2 utilities methods/functions

Search on blog

Petition by Java EE Guardians

Twitter

miercuri, 13 mai 2015

[OmniFaces utilities 2.0] Add the given faces message globally or to the given client ID


[OmniFaces utilities] The add() method adds the given faces message to the given client ID. When the client ID is null, it becomes a global faces message. This can be filtered in a <h:messages globalOnly="true">.

Method:
if you don't know the getContext() method than check the Faces#getContext()
Usage:

We can use the Messages#add() to add a global message, as below:

<h:messages/>
<h:form id="loginFormId">             
 E-mail: <h:inputText id="emailId" value="#{loginBean.email}"/>               
 Pass: <h:inputSecret id="passwordId" value="#{loginBean.password}"/>                                         
 <h:commandButton id="submitId" value="Login" action="#{loginBean.loginAction()}"/>                        
</h:form>

import org.omnifaces.util.Messages;
...
FacesMessage message = new FacesMessage();          
message.setSummary("E-mail not allowed!");
message.setDetail("Only Yahoo and Gmail domains are supported so far!");
message.setSeverity(FacesMessage.SEVERITY_ERROR);
       
Messages.add(null, message);

We can use the Messages#add() to add a message to a clientId, as below:

<h:form id="loginFormId">             
 E-mail: <h:inputText id="emailId" value="#{loginBean.email}"/>               
 <h:message for="emailId"/>
 Pass: <h:inputSecret id="passwordId" value="#{loginBean.password}"/>                                          
 <h:commandButton id="submitId" value="Login" action="#{loginBean.loginAction()}"/>                        
</h:form>

import org.omnifaces.util.Messages;
...
FacesMessage message = new FacesMessage();          
message.setSummary("E-mail not allowed!");
message.setDetail("Only Yahoo and Gmail domains are supported so far!");
message.setSeverity(FacesMessage.SEVERITY_ERROR);
       
Messages.add("loginFormId:emailId", message);

In order to use Messages#add() all you need is an FacesMessage instance.

Niciun comentariu :

Trimiteți un comentariu

JSF BOOKS COLLECTION

Postări populare

OmniFaces/JSF Fans

Visitors Starting 4 September 2015

Locations of Site Visitors