Hi everyone,
I have the following scenario (using rich faces):
...
<a4j:outputPanel id="foo">
<h:commandButton disabled="#{not _user.selected}" value="Do Stuff" />
</a4j:outputPanel>
...
<h:selectBooleanCheckbox value="#{_user.selected}">
</h:selectBooleanCheckbox>
...
I now want the 'foo' panel to reload when I click the checkbox. What's the correct way to add the reload functionality to the checkbox?