テーブルに 2 つの列があり、各列に 1 つのチェックボックスがあります。
<p:column headerText="#{msg['labels.ok']}" styleClass="center" style="width:40px;" id="acpCol">
<p:selectBooleanCheckbox
id="acpSel"
value="#{item.acept}"
onchange="checkAcp(this);
disabled="#{item.cancel}">
</p:selectBooleanCheckbox>
</p:column>
<p:column headerText="#{msg['labels.cnx']}" styleClass="center" style="width:40px;" id="cnxCol" >
<p:selectBooleanCheckbox
id="cnxSel"
value="#{item.cancel}""
disabled="#{!item.acept}"
>
</p:selectBooleanCheckbox>
</p:column>
最初のものをチェックして2番目のものを有効にする必要がありますが、javascriptではできませんでした。