Re: CheckBoxes in tag

2004-10-01 Thread Ratnakar Parakala
Hi, Why don't you use for the same We are using it for similar functionality. Ratnakar Wendy Smoak <[EMAIL PROTECTED]> wrote: From: "Shabada, Gnaneshwer" > You are right. But like I did in my previous snippet, if I setup my > deleteAction mapping to deleteForm in my config file I would

Re: CheckBoxes in tag

2004-09-27 Thread Wendy Smoak
From: "Shabada, Gnaneshwer" <[EMAIL PROTECTED]> > You are right. But like I did in my previous snippet, if I setup my > deleteAction mapping to deleteForm in my config file I would think the > searchResults.jsp should by default take deleteForm as its ActionForm and > recognize memberList in the it

RE: CheckBoxes in tag

2004-09-27 Thread Shabada, Gnaneshwer
iling List Subject: Re: CheckBoxes in tag From: "Shabada, Gnaneshwer" <[EMAIL PROTECTED]> > Baahh! why didn't that strike me :) > I'll put searchResults in session and it should work.. > Thanks for your help, Wendy. You're welcome... sometimes there's a goo

Re: CheckBoxes in tag

2004-09-27 Thread Wendy Smoak
From: "Shabada, Gnaneshwer" <[EMAIL PROTECTED]> > Baahh! why didn't that strike me :) > I'll put searchResults in session and it should work.. > Thanks for your help, Wendy. You're welcome... sometimes there's a good reason not to put something in session scope. To the consternation of my network

RE: CheckBoxes in tag

2004-09-27 Thread Shabada, Gnaneshwer
Baahh! why didn't that strike me :) I'll put searchResults in session and it should work.. Thanks for your help, Wendy. -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: Monday, September 27, 2004 6:33 PM To: Struts Users Mailing List Subject: Re: CheckBox

Re: CheckBoxes in tag

2004-09-27 Thread Wendy Smoak
From: "Shabada, Gnaneshwer" <[EMAIL PROTECTED]> > And changed the logic:iterate tag > type="org.acaosa.registration.RegistrationTO"> > > This time it didnot recognize memberList and gave me a NullPointerException. You seem to be expecting to "know" that memberList is a property of some form. I

RE: CheckBoxes in tag

2004-09-27 Thread Shabada, Gnaneshwer
t: Monday, September 27, 2004 6:03 PM To: Struts Users Mailing List Subject: Re: CheckBoxes in tag From: "Shabada, Gnaneshwer" <[EMAIL PROTECTED]> > I replaced the checkbox with multi box and in my action class when I > retrieved values, I was getting as "$register.me

Re: CheckBoxes in tag

2004-09-27 Thread Wendy Smoak
From: "Shabada, Gnaneshwer" <[EMAIL PROTECTED]> > I replaced the checkbox with multi box and in my action class when I > retrieved values, I was getting as "$register.memberId" Strings rather than > the memberIds for those checked. Am I doing anything wrong? Are you using a JSP 2.0 container, and

RE: CheckBoxes in tag

2004-09-27 Thread Shabada, Gnaneshwer
ubject: Re: CheckBoxes in tag From: "Shabada, Gnaneshwer" <[EMAIL PROTECTED]> > I am running into problem when trying to implement checkboxes using Struts > html:checkbox tag in tag. The scenario is as follows: If you have multiple checkboxes, the multibox tag, not checkbox. The

Re: CheckBoxes in tag

2004-09-27 Thread Wendy Smoak
From: "Shabada, Gnaneshwer" <[EMAIL PROTECTED]> > I am running into problem when trying to implement checkboxes using Struts > html:checkbox tag in tag. The scenario is as follows: If you have multiple checkboxes, the multibox tag, not checkbox. Then it should populate your String[] property. I

CheckBoxes in tag

2004-09-27 Thread Shabada, Gnaneshwer
I am running into problem when trying to implement checkboxes using Struts html:checkbox tag in tag. The scenario is as follows: I have a result page that is populated from the database. I used the to iterate through the list of results retrieved from database matching a search criteria. Howeve