RE: dealing with check boxes

2004-08-23 Thread Susan Bradeen
[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 concern is as follows. e.g

RE: dealing with check boxes

2004-08-22 Thread Jignesh Kapadia
- 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. e.g. I display these records with checkbox on my JSP as follows

Re: dealing with check boxes

2004-08-20 Thread anuj . upadhyay
/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 concern is as follows. e.g. I display

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. e.g. I display

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

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 logic:iterator id= list name=name of the bean property=Name of the property html:checkbox name=list property=chkflag indexed=true/ td /td /logic:iterate

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 as