I understand the below won't work as is without the backing bean put in
scope with a useBean construct...but I'm more curious why I can not get
c:out to evaluate (or really I should also just be able to use ${..}
without the c:out since using tomcat5). What I end up getting is the
literal text ${status.index} being displayed. I've tried with
commons-el.jar and without and the same result:(
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<f:view>
<h:form>
<c:forEach items="${employeeBacking.employees}" var="emp" varStatus="status">
<c:out value="${status.index}"/><br/>
</c:forEach>
</h:form>
</f:view>
- Having trouble with JSTL inside JSF Rick Reumann
- Re: Having trouble with JSTL inside JSF Matt Raible
- Re: Having trouble with JSTL inside JSF Matthias Wessendorf
- Re: Having trouble with JSTL inside JSF Martin Marinschek
- Re: Having trouble with JSTL inside J... Bernd Bohmann
- Re: Having trouble with JSTL ins... Craig McClanahan
- Re: Having trouble with JSTL... Udo Schnurpfeil
- Re: Having trouble with ... Martin Marinschek
- Re: Having trouble with ... Udo Schnurpfeil
- Re: Having trouble with ... Martin Marinschek
- Re: Having trouble with JSTL inside JSF Bernd Bohmann

