| Author |
clear h:messages?
|
nimo frey
Ranch Hand
Joined: Jun 28, 2008
Posts: 580
|
|
|
Does anyone know how I can clear the list of facesMessages in a managedBean?
|
 |
Anil kumar
Greenhorn
Joined: Dec 05, 2008
Posts: 3
|
|
try .. Iterator messageIterator = FacesContext.getCurrentInstance().getMessages(); while (messageIterator.hasNext()) { messageIterator.remove(); }
|
 |
 |
|
|
subject: clear h:messages?
|
|
|