how can I check for the && condition for rendered attribute ?
I have the following code -
<tr:outputText inlineStyle="font-weight:bold"
rendered="#{myBean.code != 'qws'} && {myBean.code != \'qwe\'}"
value="Submitted"/>
What I am trying to do here is that only when myBean.codde value is not qwe or qws then print submitted to the user.
What is the correct way. This doesnot seem to work. Any help will br appreciated. Thanks.