Hello,

I'm migrating an application from RichFaces to PrimeFaces and I think the property autoUpdate="true" of p:outputPanel doesn't work with Spring webflow.

Code:
<h:commandButton  value="Publish" action="publish">
	<f:ajax execute="@form"  />
</h:commandButton>

<p:outputPanel id="notification" layout="block" autoUpdate="true">
	
	<h:panelGroup layout="block" styleClass="notification-panel" rendered="#{!empty list}">
	  
		Empty list
  			
	</h:panelGroup>
		
</p:outputPanel>
If I remove the action attribute (it doesn't call spring webflow) the outputpanel is updated otherwise it isn't updated.

Thanks in advance.