Hello everyone. Even though this problem is not fatal, I would still like to know if anyone has experienced (and solved) the following:
Some JSTL tags are not behaving correctly.
The following sample code does not produce the desired output:
<c:forEach items="blab,blob,blub" var="yo">
<input type="text" value="<c:out value="${yo}"/>"/>
</c:forEach>
Even though 3 textfields are produced (which means c:forEach is working fine), all textfields have a value of ${yo} instead of blab, blob and blub. Further tests, trying to print out other things with c:out produce the same unsatisfactory results.
Any idea, if this is a problem within the portal, because using this code on a JSP outide a portal works just perfectly.
Thanks in advance.
Regards, dj
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3877808#3877808
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3877808
|