0 Replies Latest reply on Mar 19, 2012 2:20 AM by vata2999

    Parsing facelet Error terminating tag

    vata2999

      Hi,

       

      the following code in  facelet (xhtml) produces error while parsing how can i solve this ?

      (the error is tag div must terminate )

       

       

      <c:forEach var="_day" begin="1" end="10" step="1">
      <c:if test="#{_day % 2 == 0}">
           <div>
      </c:if>
      This is  #{_day}
      <c:if test="#{_day % 2 == 0}">
           </div>
      </c:if>
      </c:forEach>