commandLink次の条件が存在する場合、非表示にしたい:
verifyTxnList.resolvedどこresolvedに値がある場合Y、非表示にしたいcommandLinkelse show commandLink
<h:commandLink value="#{verifyTxnList.resolved}">
...
...
</h:commandLink>
次のように:
<h:selectBooleanCheckbox id="resolveTxn" value="#{verifyTxnList.checked}" disabled="" rendered="#{!verifyTxnList.checked}"/>