RE: Java script submit on select from drop down

2001-11-20 Thread ltorrence
() html:options collection=orgTypes property=value / Lee -Original Message- From: Ravi Kharse [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 20, 2001 1:44 AM To: [EMAIL PROTECTED] Subject: Java script submit on select from drop down Hi, I'm using struts select and options tag

Re: Java script submit on select from drop down

2001-11-20 Thread Peter Pilgrim
[EMAIL PROTECTED] To: [EMAIL PROTECTED] cc: Subject: Java script submit on select from drop down Hi, I'm using struts select and options tag for creating a dropdown. I want to submit the form on selecting from the dropdown. I coded : html:select property=organizationName onchange

RE: Java script submit on select from drop down

2001-11-20 Thread Nekkalapudi, Viplava
] Subject: Java script submit on select from drop down Hi, I'm using struts select and options tag for creating a dropdown. I want to submit the form on selecting from the dropdown. I coded : html:select property=organizationName onchange=this.form.submit() html:options collection

RE: Java script submit on select from drop down

2001-11-20 Thread Chughtai, Imran
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 20 November 2001 11:11 To: [EMAIL PROTECTED] Subject: RE: Java script submit on select from drop down Change it to something like this, where your_form_name is the name attribute you defined in your action mapping. Your

Java script submit on select from drop down

2001-11-19 Thread Ravi Kharse
Hi, I'm using struts select and options tag for creating a dropdown. I want to submit the form on selecting from the dropdown. I coded : html:select property=organizationName onchange=this.form.submit() html:options collection=orgTypes property=value / Can someone help me on this.