Click or drag to resize
AceoffixCtrlJsFunction_AfterDocumentSaved Property
Sets a JavaScript function for AfterDocumentSaved event.

Namespace: Aceoffix
Assembly: Aceoffix (in Aceoffix.dll) Version: 5.0.0.1
Syntax
public string JsFunction_AfterDocumentSaved { get; set; }

Property Value

Type: String
The property has no default value.
Remarks

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.

Examples

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.

JavaScript
<script language="javascript" type="text/javascript">
    function AfterDocumentSaved(IsSaved) {
        // Add your code here.
    }
</script>
See Also