How to check two conditions inside rendered attribute?

el, jsf, multiple-conditions, rendered-attribute

Solution

Here is a proper EL Expression

<h:form rendered="#{cars.enabled and cars.enabledEdit}">

No need (and its even illegal to use #{} inside #{})

Problem

I tried below code ``` <h:form rendered="{#{cars.enabled} and #{cars.enabledEdit}}"> ``` But this doesn't works.

Original source