Jakob,
This is the test our tester is using and the rendered markup shows
"return jsf.util.chain(...)":
<h:body>
<h:form id="form1" prependId="false">
<h:outputScript name="jsf.js" library="javax.faces" target="head" />
<h:outputText id="out1" value="#{incrementdecrement.value}"/>
<br/>
<h:outputText id="out2" value="#{incrementdecrement.value}"/>
<br/>
<h:commandButton id="button1" value="Count"
action="#{incrementdecrement.increment}">
<f:ajax render="@all"/>
</h:commandButton>
<br/>
</h:form>
</h:body>
We expect (and indeed so does Sun RI) that in such a case the onclick
handler should return false no matter what. Shouldn't <f:ajax> be a
submitting ClientBehavior?
Thanks,
Curtiss Howard