Just trying to get a jsf page with a dynamic ajax part to work. The page has basically two sections: -a section containing commandLinks -a subpage section
Now whenever a commandLink is clicked, the page value of a backing bean is set to a specific subpage and the subpage section should be refreshed with that page.
This works so far, but only after the second click on the commandLink and I just can't figure out why.
The code of the page looks like this:
<h:form>
...
<div class="hor-list shadow">
<h:commandButton class="inline-img"
image="../res/img/rails-logo.jpg">
<f:setPropertyActionListener target="#{subPage.page}"
value="../pages/development_rails.xhtml" />
<f:ajax render=":subcontent" />
</h:commandButton>
</div>
</h:form>
<h:panelGroup id="subcontent" layout="block" class="list-container">
<h:outputLabel id="fooid" value="#{subPage.page}" />
<ui:include src="#{subPage.page}" />
</h:panelGroup>
The subPage backing bean is a session scoped managed bean with only one property so far (the page-property).
Maybe I should also mention that I try to run this on Google App Engine - so far I do not see any connection with the problem to that, but thinking of the many constraints for using jsf with GAE, one never knows...
Help very appreciated! Thanks Folks, Rudi