submit form using javascript with html:button
in html:button onclick method I am calling a javascript function where
my code is
document.forms[1].action="...";
document.forms[1].submit();
I have used html:form where I mentioned the action which is different that script action...
It gives javascript error on document.forms[1].action="..."; saying that not an object or method...
in this action I am trying to call a method on LookupdispatchAction
|