Re: Problems with Iterator tag Please Help

2005-10-20 Thread rajasekhar . cherukuri
TECTED]> 10/20/2005 08:56 PM Please respond to "Struts Users Mailing List" To Struts Users Mailing List cc Subject Problems with Iterator tag Please Help Hello I have a situation here. I have an ArrayList of DTO objects in session. <% ArrayList rows = (ArrayList) session

[OT] Re: Problems with Iterator tag Please Help

2005-10-20 Thread Dave Newton
Murray Collingwood wrote: Sometime it's just hard not to say anything. There are lots of different options for making this work and you don't have to change to JSTL to do it. The logic:iterate tag is absolutely fine, you just have to get the right parameter names. I'm of the opinion that t

Re: Problems with Iterator tag Please Help

2005-10-20 Thread Murray Collingwood
Sometime it's just hard not to say anything. There are lots of different options for making this work and you don't have to change to JSTL to do it. The logic:iterate tag is absolutely fine, you just have to get the right parameter names. Thanksfully there is a pattern to how the parameters

RE: Problems with Iterator tag Please Help

2005-10-20 Thread Karr, David
situation where using Struts-EL is convenient. You'd just replace "rows" with "${rows}". > -Original Message- > From: Troy Bull [mailto:[EMAIL PROTECTED] > Sent: Thursday, October 20, 2005 8:26 AM > To: Struts Users Mailing List > Subject: Problems w

Re: Problems with Iterator tag Please Help

2005-10-20 Thread Dave Newton
Troy Bull wrote: I have a situation here. I have an ArrayList of DTO objects in session. <% ArrayList rows = (ArrayList) session.getAttribute("rows"); if (rows != null) { Iterator i = rows.iterator(); while (i.hasNext()) { NibuSrchVLocalDTO debug = (NibuSrchVLocalDTO)i.n

Problems with Iterator tag Please Help

2005-10-20 Thread Troy Bull
Hello I have a situation here. I have an ArrayList of DTO objects in session. <% ArrayList rows = (ArrayList) session.getAttribute("rows"); if (rows != null) { Iterator i = rows.iterator(); while (i.hasNext()) { NibuSrchVLocalDTO debug = (NibuSrchVLocalDTO)i.next();