A
AG
My web page has a drop down box, and I want to call struts action as
soon as the value changes from the drop down.
(Basically submit a form using JavaScript on "onchange" event of
dropdown)
Can someone give me a direction for such JavaScript?
example would be
JSP
<html:form action="/someAction" method="POST">
Struts-config.xml
<action path="/someAction" type="com.SomeAction" name="someForm"
parameter="action" scope="request" input="someinput">
<forward name="someLocalActn"
path="/someAction?action=display"></forward>
</action>
Thanks.
soon as the value changes from the drop down.
(Basically submit a form using JavaScript on "onchange" event of
dropdown)
Can someone give me a direction for such JavaScript?
example would be
JSP
<html:form action="/someAction" method="POST">
Struts-config.xml
<action path="/someAction" type="com.SomeAction" name="someForm"
parameter="action" scope="request" input="someinput">
<forward name="someLocalActn"
path="/someAction?action=display"></forward>
</action>
Thanks.