I have been refactoring some views away from monolithic pages to take advantage of Facelets Templating. Since I have done all is working except one a4j:status component. I have checked the rendered HTML and it is there, its just not activating when an ajax submit happens.
Here are my views
tabletemplate.xhtml
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
...>
<a4j:status>
<f:facet name="start">
<ui:insert name="statusOutputArea">
<h:graphicImage value="../img/spinner.gif"/>
</ui:insert>
</f:facet>
</a4j:status>
<a4j:outputPanel id="#{outputId}">
<ui:insert name="tableArea">
Some Result Table Here
</ui:insert>
</a4j:outputPanel>
</ui:composition><ui:composition xmlns="http://www.w3.org/1999/xhtml" ...> <ui:insert name="inputArea"> Some Input Components Here </ui:insert> <h:panelGroup> <ui:insert name="buttonArea"> Some Buttons Components Here </ui:insert> </h:panelGroup> <rich:separator/> <ui:insert name="resultArea"> Some Results Here </ui:insert> </ui:composition>