I want to hide commandLink
if following condition exists:
verifyTxnList.resolved
where resolved
has value Y
then I want to hide commandLink
else show commandLink
<h:commandLink value="#{verifyTxnList.resolved}">
...
...
</h:commandLink>
like following :
<h:selectBooleanCheckbox id="resolveTxn" value="#{verifyTxnList.checked}" disabled="" rendered="#{!verifyTxnList.checked}"/>