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:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to