I have the following code:
<h:commandLink action="#{testBean.showSomething}">
Do Stuff
</h:commandLink>
wich does what i want (change the state of testbean and reload te page wich will show a different set of divs. becouse of their "rendered" properties) Now i want to use ajax to accomplish this so i did this:
<h:commandLink action="#{testBean.showSomething}">
<f:ajax event="click" render=":content" />
Do Stuff
</h:commandLink>
However this causes the showSomething method to not even be called. IMHO what i want to do is rather simple but i cant for the life of me figure out how to do it.