Presently I am conditionaly rendering the Checkbox inside outputPanel,but when i am selecting it,its value is not getting updated in the backing bean.Please help how can I fix this.
Please find the code below:
<p:outputPanel rendered="#{dataBean.dataCleanModel.checkThresholdValueForStdDev(o)}">
<td><h:selectBooleanCheckbox value="#{o.checkBoxToAcceptTheRow}"/></td>
</p:outputPanel>
<p:outputPanel rendered="#{!dataBean.dataCleanModel.checkThresholdValueForStdDev(o)}">
<td><h:selectBooleanCheckbox value="#{o.checkBoxToAcceptTheRow}" /></td>
</p:outputPanel>
As shown changing the checkbox value corresponding setter method is not getting invoked/changed value is not getting set in the bean