Is there a way in Primefaces to enable or disable a checkbox in a datatable? Right now my datatable is like this:
<p:dataTable id="dTable" var="tt" value="#{aBean.aList}" selection="#{aBean.selectedValue}" rowStyleClass="#{tt.state.intValue() le 1 ? 'active' : 'passive'}">
<p:column selectionMode="multiple" />
...
</dataTable>
but this code just puts a column with checkboxes together with a checkbox in the header. I want checkboxes to be rendered according to a value in the backing bean.