Im not sure if this behaviour is normal or not.
Im hoping that my panel will be rendered only after clicking on a button that triggers an ajax request.
Not using Ajax works fine :
p:panel id="myPanel" rendered="#{myBean.flag}"p:commandButton ajax="false" action="#{myBean.setFlagToTrue}"- before clicking the button, the myPanel is not displayed
(flag = false) - clicking the button, will set the flag to true, and myPanel is rendered fine
Using ajax fails :
p:panel id="myPanel" rendered="#{myBean.flag}"p:commandButton ajax="true" action="#{myBean.setFlagToTrue}" update="myPanel"- before clicking the button, the myPanel is not displayed
(flag = false) - clicking the button, will set the flag to true (as displayed by my log file), and myPanel is not rendered
I've tried omitting the rendered attribute, and indeed the ajax works fine.
I can tell that by looking at the changes reflected inside the panel.