On May 3, 7:43 pm, scphantm <[email protected]> wrote:
> im doing something with EL expressions in faces.  here is my
> expresison
>
> rendered="#{menuBackingEJB.enable_eca} && #{configBean.citiVer !=
> 'ca'}"

You should put them in one EL expression:
rendered="#{menuBackingEJB.enable_eca && configBean.citiVer != 'ca'}".
You can try and see if you can use 'and' instead of '&&'.

KEB

-- 
You received this message because you are subscribed to the Google Groups "The 
Java Posse" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/javaposse?hl=en.

Reply via email to