Re: Sandbox iterators forColumn tag does not accept expression

2004-07-01 Thread Kris Schneider
Only if you want to use the Iterators taglib with JSP 2.0 ;-). More than likely, there are other ways to do what you want without that taglib. It looks like you're interested in generating tables, so another taglib you might want to investigate is the display taglib: http://displaytag.sourceforge.

Re: Sandbox iterators forColumn tag does not accept expression

2004-07-01 Thread Ludovic Bailly
You're right, Iterators taglib works well with JSP 1.2 but not with JSP 2.0. Switching rtexprvalue to true doesn't work under Servlet 2.4 and JSP 2.0. The only solution I see is to modify taglib sources. Thanks, Ludo. Kris Schneider wrote: As far as I can tell, the Iterators taglib is really jus

Re: Sandbox iterators forColumn tag does not accept expression

2004-07-01 Thread Kris Schneider
As far as I can tell, the Iterators taglib is really just targeted at JSP 1.2. What I think you're seeing is the result of the tags using "false" for their attributes in the taglib's TLD file. This is required under JSP 1.2 to use the JSTL EL for attribute values because the taglib evaluates the ex

Sandbox iterators forColumn tag does not accept expression

2004-06-30 Thread Ludovic Bailly
Hi, I'm trying to use the forColumn iterators tag like the documentation shows. Using tomcat 5.x, I get attribute items doesn't accept expression with : ... ... which is similar to the example provided with the sources. Thanks, Ludo.