Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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:

  1. Am I doing anything wrong, or is this a bug?
  2. Can you think of a workaround?
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.