I've written a popupPanel with a form and a dataTable inside. This dataTable contains a row with selectBooleanCheckbox'es. My problem is, the first time I click one of these checkboxes the check inside is shown shortly and than disappears (I think through the rerender process). The second click in any checkbox leads to the expected result, the check remains in the box and the boolean value is stored in my bean.
Can anybody tell me why it does not work the first but all other time I click on a checkbox. How do I have to change my code to get it work properly?
I've got the same problem with my filter inputText elements in this popupPanel. Their content also disappears the first time I enter something.
I'm using RichFaces 4.0.0.
Thank you
Servlet
<rich:popupPanel id="assignmentOverlay">
<h:form id="form">
<rich:dataTable id="unassignedTemplateList" var="unassignedTemplate">
<f:facet name="header>
...
</f:facet>
<rich:column>
<h:selectBooleanCheckbox value="#{unassignedTemplate.checked}" valueChangeListener="#{corTopicTemplateCrud.checkboxClicked}">
<a4j:ajax event="change" render=":unassignedTemplateList" immediate="true"/>
</h:selectBooleanCheckbox>
</rich:column>
</rich:dataTable>
</h:form>
</rich:popupPanel>
Snippet of my CrudBean
public void checkboxClicked(ValueChangeEvent event) {
templates.getRowData().setChecked((Boolean) event.getNewValue());
}