Re: how to achieve this with s:iterator tag

2009-04-25 Thread Wes Wannemacher
On Saturday 25 April 2009 10:20:43 am Bhaarat Sharma wrote: > is there no way to overcome this drawback? > > do i have to change the way I am getting my results from the DB to suit the > iterator tags drawback in this case? You call it a drawback, I call it a feature... I don't know if I'd want to

Re: how to achieve this with s:iterator tag

2009-04-25 Thread Bhaarat Sharma
is there no way to overcome this drawback? do i have to change the way I am getting my results from the DB to suit the iterator tags drawback in this case? On Fri, Apr 24, 2009 at 5:25 PM, Bhaarat Sharma wrote: > I have the following code in jsp scriplet > <% > ArrayList statist

how to achieve this with s:iterator tag

2009-04-24 Thread Bhaarat Sharma
I have the following code in jsp scriplet <% ArrayList statisticsList = something.getStatistics(); Iterator itr1 = statisticsList.iterator(); while (itr1.hasNext()) { dvo3_a = (VerificationVO) itr1.next();