Hi all
 I have the following problem:
 I have a button on my form that uses javascript to change to form target 
before submitting because I'm exporting an RTF generated in my action to the 
new browser, as follows
  
<html:submit property="exportFlag"
onclick="set('export');setFormTarget('_export')"
disabled="false">Create Graph (Popup)</html:submit>
 
function setFormTarget(newTarget){
document.forms[0].target=newTarget;
}

The thing is I want to be able to use the validate() method in my Form 
object and return to the ORIGINAL browser if an error is encountered...

so is there anything I can do within the action to affect that?

Thanks

-- 
-Dave
[EMAIL PROTECTED]

Reply via email to