This commandButton is working:
<h:commandButton id="button_updateIt" value="#{i18n.button_update_it}"
action="#{masterBean.update()}">
</h:commandButton>
This ajax call is working:
<h:commandButton id="button_updateIt" value="#{i18n.button_update_it}">
<f:ajax event="click" render=":form_2:updateMe" />
</h:commandButton>
Why is the action attribute combined with ajax not working?
<h:commandButton id="button_updateIt"
value="#{i18n.button_update_it}"
action="#{masterBean.update()}">
<f:ajax event="click" render=":form_2:updateMe" />
</h:commandButton>
I use jsf version 2.1.1 and java 1.7.0 and GlassFish Server 3.1.2 (build 23)