i am writing an application for web, i need save a document with javascript how can i do it? thanks…
Subject: Save a document with JavaScript
At the bottom of your form place the following code and insert a hotspot button called saveButton with the formula below.
hotspot button here
Formula:
@If(
@Command([FileSave]);
@Command([FileCloseWindow]);
@Return(“”)
)
Place a graphic on the form and add the following javascript to a onclick event calling
onclick=“javascript:document.forms[0].saveButton.click();”
This should cause the saveButton to execute it’s formula
Subject: Save a document with JavaScript
See here: