Dave Newton wrote:
--- On Fri, 8/29/08, James Neff wrote:
<s:form id="myForm" name="myForm" action="OriginalAction" theme="simple"> <input type='button' onclick="myJavaScriptMethod();" value='button label here'/>
</s:form>

In the <head> section:
function myJavaScriptMethod() {
    document.myForm.action = "/myProject/NewAction.action";
    document.myForm.submit();
}

And that is how I programmatically set different actions
from javascript.

Is there a better way?

You could use the "action" and "method" properties of <s:submit...> depending 
on your app needs.

Dave


I learn something new every day from this list.
Yesterday was about goats, and today it's about <s:submit  buttons.

Thanks Dave!

Reply via email to