condition IF dans un page xhtml
Bonjour la communauté. Je développe sur JSF avec des pages xhtml. Mais je remarque que les condition "IF" ne sont pas pris en comte.
Merci
Code:
1 2 3 4 5 6 7 8 9 10 11 12
|
<div
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ice="http://www.icesoft.com/icefaces/component"
xmlns:c="http://java.sun.com/jsp/jstl/core">
<c:set var = "nav" scope = "request" value = "${navigationBean.selectedPanel}"/>
<c:if test="${nav==null}">
........
</c:if> |