| Author |
OnChange not firing
|
Devinder Mahil
Greenhorn
Joined: Dec 19, 2008
Posts: 5
|
|
Hi :
I have a form that includes a jsp. In this jsp I have an html:select which has an onchange event which is not firing.
included.jsp
what's wrong with the code?
regards
Devinder
|
 |
Eric Pascarello
author
Rancher
Joined: Nov 08, 2001
Posts: 15362
|
|
Have you debugged what is happening?
Are you getting an errors?
Did you stick an alert in the onchange to see if it is firing?
Do you have a submit button named submit? [if you do rename it]
Are you actually changing the selected item? [Picking the same item does not fire the event]
Eric
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56529
|
|
|
SHowing Struts source code in an HTML forum isn't the best approach. It'd be better to show the resulting HTML.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
Devinder Mahil
Greenhorn
Joined: Dec 19, 2008
Posts: 5
|
|
Thanks Eric. There was a button named "submit" in the form, renaming it worked.
regards
Devinder
|
 |
stef li
Greenhorn
Joined: Jan 16, 2006
Posts: 27
|
|
onchange="this.form.action='/anotherAction.do' this.form.submit();"
that you forget a semicolon between ".do'" and "this"?
you can add a simple alert statement in your onchange function to check it.
like onchange="alert('this is a test');"
i think i will work fine.
|
This guy is so lazy!!!<br />There is nothing left!
|
 |
 |
|
|
subject: OnChange not firing
|
|
|