You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@struts.apache.org by Tahir Awan <TA...@descartes.com> on 2002/08/01 17:37:21 UTC

logic:iterate and bean:write tags.

Hi,
 
I wrote a specialized iterate tag to display summary pages (reports). It
iterates over a collection which has array of String (columns) for each row
(record). This was done in pre 1.0. The benefit is that all summaries can
use this tag and I have code like 
Vector list = new Vector();
while (...) {
   list.add ( new String[] { col1, col2, col3, col4 } );
}
 
Can it be done with Struts 1.0 or 1.1 tags? I dont know if bean:write can be
used to access array elements.
 
Thanks,
Tahir Awan
 
 

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>