AceoffixCtrlJsFunction_AfterDocumentSaved Property |
Namespace: Aceoffix
This event is triggered at the client-side after the document is saved.
If you want to capture this event, You should define a JavaScript function in the aspx file of current page.
The following code example shows how to use the JsFunction_AfterDocumentSaved property.
AceoffixCtrl1.JsFunction_AfterDocumentSaved = "AfterDocumentSaved()";
And then, you should define the AfterDocumentSaved() JavaScript function in the aspx file of current page. The IsSaved parameter means whether the document is saved successfully.
<script language="javascript" type="text/javascript"> function AfterDocumentSaved(IsSaved) { // Add your code here. } </script>