Re: Passing collection Objects from html form to Action class

2005-06-30 Thread Nitesh
You could probably think of putting them as a session/request attribute and access it from action class! Nitesh - Original Message - From: "Phani" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Thursday, June 30, 2005 10:08 PM Subject: RE: Passi

RE: Passing collection Objects from html form to Action class

2005-06-30 Thread Mark Benussi
so much that I am going to crack on with it, I may let you know how I get on if it is a worthy solution. -Original Message- From: Phani [mailto:[EMAIL PROTECTED] Sent: 30 June 2005 17:38 To: Struts Users Mailing List Subject: RE: Passing collection Objects from html form to Action class T

Re: Passing collection Objects from html form to Action class

2005-06-30 Thread Phani
How ??... can u show me the syntax.. --- Laurie Harper <[EMAIL PROTECTED]> wrote: > Huh? All you have to do is render the collection as > a set of hidden fields > on the form and treat the data the same way as the > string value. > > L. > > Mark Benussi wrote: > > > Sadly you cannot unless yo

Re: Passing collection Objects from html form to Action class

2005-06-30 Thread Laurie Harper
Huh? All you have to do is render the collection as a set of hidden fields on the form and treat the data the same way as the string value. L. Mark Benussi wrote: Sadly you cannot unless you make the scope of the form session. I find it limiting to say the least! -Original Message

RE: Passing collection Objects from html form to Action class

2005-06-30 Thread Phani
Tell me which is performance efficient & desired way: Putting the form in session or making a trip to the database.. assuming we have collection of 50 - 60 records.. Phani.. --- Mark Benussi <[EMAIL PROTECTED]> wrote: > Sadly you cannot unless you make the scope of the > form session. > > I f

RE: Passing collection Objects from html form to Action class

2005-06-30 Thread Mark Benussi
Sadly you cannot unless you make the scope of the form session. I find it limiting to say the least! -Original Message- From: Phani [mailto:[EMAIL PROTECTED] Sent: 30 June 2005 16:14 To: Struts Users Mailing List Subject: Passing collection Objects from html form to Action class I hav