I managed to create bundle with Primefaces. I want to create Java buffer and store there messages in FIFO order. When message is inserted into the buffer I want to display it into the JSF page. How I can do this with Primefaces?
I found example with Primefaces:
<h:form id="dccd">
<p:growl id="growl" showDetail="true" sticky="true" />
<p:panel header="Growl">
<h:panelGrid columns="2">
<h:outputText value="Your Name: *" />
<p:inputText value="#{bean.text}" required="true" label="Name"/>
</h:panelGrid>
<p:commandButton value="Save" actionListener="#{bean.save}" update="growl"/>
</p:panel>
</h:form>
But this is working only when I call action listener.
p:pushin order to update the JSF page data or I have to use bought together? – user1285928 Jun 11 '12 at 19:33