I have following attribute in my Facelet:
rendered=\"#{createTicketBaseBean.show == \'#{I18N[\'key_please_select\']}\'}\"
I am trying to co
This is indeed invalid syntax. You can't and shouldn't nest EL expressions. You should see the #{} as one whole scope where variables can interact with each other.
Given your desired comparison
createTicketBaseBean.show == I18N['key_please_select']
this is the proper syntax:
rendered="#{createTicketBaseBean.show == I18N['key_please_select']}"