I have a form action button with the following formula:
function := “javascript:processDocument(window.document.forms[0])”;
@URLOpen(function);
@Command([FileSave]);
The JavaScript that’s called simply displays a message if a field is null. If the field is not null, the @Command([FileSave] does not execute even if the JavaScript includes the following:
return ( true );
I’d appreciate any ideas on why the @Command([FileSave] does not execute after the JavaScript runs.
Thanks.