I'm using PrimeFaces 3.3 and JSF Mojarra 2.1.11.
I use a global layout that has a p:growl, like this:
<p:growl showDetail="false" showSummary="true" id="growl"
autoUpdate="true" redisplay="true" life="15000" globalOnly="true" />
The growl is the first component after <h:body>.
When I want to add a global message (like a success message after saving an entity), I use OmniFaces to add it (it works exactly the same way, it's just a shortcut):
org.omnifaces.util.Messages.addGlobalInfo("Success");
It works fine in most cases, but when I click on a <p:commandButton> from inside a <p:dialog> that has a "close listener", the growl doesn't show up (or maybe it shows up but hides so fast that I can't see it). My <p:ajax> looks like this:
<p:ajax event="close" immediate="true" partialSubmit="true"
listener="#{bean.listener}" />
The only thing my listener does (literally) is to set an attribute to null. The signature is:
public void listener(org.primefaces.event.CloseEvent event)
My guess is that the growl's redisplay="true" attribute is not working in this case, but I'm not sure.
Questions:
- Am I doing anything wrong, or is this a bug?
- Can you think of a workaround?