1 Reply Latest reply on Mar 6, 2006 8:43 PM by msolnit

    JSTL and JSF taglib

    pjmvn

      Hi all.
      I have a problem, please help me.

      my code is very simple:

      <c:forEach items="${jbpmTest.list}" var="item">
       <h:outputText value="#{item.text}" />
      </c:froEach>

      this code is not error but when i run nothing display.

      If i use:
      <c:forEach items="${jbpmTest.list}" var="item">
       <c:out value="${item.text}" />
      </c:froEach>

      The display as i want.

      Please give me an idea or example.

      Thanks

        • 1. Re: JSTL and JSF taglib
          msolnit

          Hi PJMVN. I am still learning J2EE, but it looks like your use of "#" instead of "$" might be the problem.

          Based on my learning so far, "#" is not usually what you want.