hi all,
i am facing a problem from the last 3-4 days. I am having a
jsp page, with a form element on that. I am having two <select> dropdown boxes of country and state on the form named MyForm . javascript: x()
banghead
These are dependent drop down and state dropdown gets filled with according to the value selected from the country drop down. This is working fine on front end. But when i submit, the fields respectilvely named selCountry and selState are not getting set in the Action Form and hence not available in my Action class.
I've checked the value by putting alert messages before submitting the form.
It's coming upto there, but not in the Action Form.
The reset method is being called of Action Form which sets these fields to empty ""
String. After that validate method is being called, and in validate method, these fields are coming as "" String and not the values which i've selected on the Jsp Page.
I am confused, when the values are being coming upto form submission, then why arn't they coming in the action form after submitting the form. I've put SOP in getter and setter methods of these fields, but they are also showing "" String.
Please help.
