RE: dealing with check boxes

2004-08-23 Thread Susan Bradeen
> > This is little bit different then normal use of check box in struts. > Can you please guide me here. > > Thanks and Appreciate your help, > Jignesh > > > > > > Jim Barrows <[EMAIL PROTECTED]> wrote: > > > > -----Original Message-

RE: dealing with check boxes

2004-08-22 Thread Jignesh Kapadia
<[EMAIL PROTECTED]> wrote: > -Original Message- > From: Jignesh Kapadia [mailto:[EMAIL PROTECTED] > Sent: Thursday, August 19, 2004 5:19 PM > To: Struts Users Mailing List > Subject: Re: dealing with check boxes > > > Anuj, > Thanks for you reply. But My conc

RE: dealing with check boxes

2004-08-20 Thread Jim Barrows
> -Original Message- > From: Jignesh Kapadia [mailto:[EMAIL PROTECTED] > Sent: Thursday, August 19, 2004 5:19 PM > To: Struts Users Mailing List > Subject: Re: dealing with check boxes > > > Anuj, > Thanks for you reply. But My concern is as follows.

Re: dealing with check boxes

2004-08-20 Thread anuj . upadhyay
08/20/2004 02:19:17 AM Please respond to "Struts Users Mailing List" <[EMAIL PROTECTED]> To: Struts Users Mailing List <[EMAIL PROTECTED]> cc:(bcc: Anuj Upadhyay/Jeppesen/TMC) Subject: Re: dealing with check boxes Anuj, Thanks for you reply. But My con

Re: dealing with check boxes

2004-08-19 Thread struts lover
keep the form in the session. When you click the submit button, the changes get committed to the database. --- Jignesh Kapadia <[EMAIL PROTECTED]> wrote: > Anuj, > Thanks for you reply. But My concern is as > follows. > > e.g. > > I display these records with checkbox on my JSP a

Re: dealing with check boxes

2004-08-19 Thread Jignesh Kapadia
Anuj, Thanks for you reply. But My concern is as follows. e.g. I display these records with checkbox on my JSP as follows In this case "list" is id on which is going to iterate. chkflag is the boolean property of an object contained in the list(can be collection or arra

Re: dealing with check boxes

2004-08-19 Thread anuj . upadhyay
Jignesh, I think your problem is not related to checkbox or multibox but to maintain a list of modified records. To keep it simple I would suggest that you maintain a Collection (Map, HashMap, List, etc.) of the modified records (which were checked or unchecked) in the session. I think you can