I have a check box, on which a datatable id is given as rerender. Here is the complete tag of the check box from JSP-
<h:selectBooleanCheckbox id="A_IsDefaultSpouseAnnutant"
value="#{XXXXXX.a_IsDefaultSpouseAnnutant}">
<a4j:support actionListener="#{XXXXXX.changeVisibility}" ajaxSingle="true"
event="onclick" immediate="true" reRender="benListTable"/>
</h:selectBooleanCheckbox>
My expectation is that on clicking on the check box, the datatable below should rerender and show the changed values. But the changes are not effective until I manually refresh the page. I searched over internet for any causes of this problem but couldn't find any. Any ehlp would be greatly helpful.
Note: The table is disabled when I am trying to reRender. Does JSF reRender disabled elements?