2011-11-10 4 views
12

Vorrei fare una condizione OR in questo menu:Come si verifica una condizione OR in un'espressione EL?

<li class="#{facesContext.viewRoot.viewId == ('/company/team.xhtml' or '/company/partnerships.xhtml') ? 'active' : '' }"><a class="item" href="company/company.xhtml">Company</a> 
    <ul> 
     <li><a href="company/team.xhtml">Team</a></li> 
     <li><a href="company/partnerships.xhtml">Partnerships</a></li> 
    </ul> 
</li> 

Che se la pagina team.xthml o partnerships.xhtml sono selezionati dall'utente il valore 'attivo' sarebbe fissato nel tag <li>.

risposta

24

Questa è la sintassi corretta:

<li class="#{facesContext.viewRoot.viewId == '/company/team.xhtml' or facesContext.viewRoot.viewId == '/company/partnerships.xhtml' ? 'active' : '' }"> 

per renderlo un po 'più corta, è possibile utilizzare #{view} invece di #{facesContext.viewRoot}:

<li class="#{view.viewId == '/company/team.xhtml' or view.viewId == '/company/partnerships.xhtml' ? 'active' : '' }"> 

Per renderlo ancora più breve, si potrebbe alias il #{view.viewId} con <c:set>:

<c:set var="viewId" value="#{view.viewId}" scope="request" /> 
... 
<li class="#{viewId == '/company/team.xhtml' or viewId == '/company/partnerships.xhtml' ? 'active' : '' }"> 
+1

grazie Bauke, l'ho fatto non so che potrei fare più breve, grazie amico. –

+0

Prego. – BalusC