JSF 2.2.10: The f:ajax execute="@this" doesn't process h:selectBooleanCheckbox -
i using wildfly jsf version 2.2.8-jboss.org version of server. after migrating jboss eap 6.3.x, packaging version of jsf 2.2.9, 2.2.10 or 2.2.11 happening following:
if use attribute execute
below, map #{mbean.mapa}
no longer updated.
<h:selectbooleancheckbox id="chkatividade" value="#{mbean.mapa[atividade]}" title="#{atividade.nome}"> <f:ajax event="click" execute="@this" render=":form:panelbotoes" /> </h:selectbooleancheckbox>
i had change execute="@form"
function.
<h:selectbooleancheckbox id="chkatividade" value="#{mbean.mapa[atividade]}" title="#{atividade.nome}"> <f:ajax event="click" execute="@form" render=":form:panelbotoes" /> </h:selectbooleancheckbox>
does know why? in newer versions of jsf, there change in behavior <h:selectbooleancheckbox>
<f:ajax>
? looks bug.
Comments
Post a Comment