Click or drag to resize
AceoffixCtrlJsFunction_AfterDocumentOpened Property
Sets a JavaScript function for AfterDocumentOpened event.

Namespace: Aceoffix
Assembly: Aceoffix (in Aceoffix.dll) Version: 5.0.0.1
Syntax
public string JsFunction_AfterDocumentOpened { 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 opened.

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_AfterDocumentOpened property.

AceoffixCtrl1.JsFunction_AfterDocumentOpened = "AfterDocumentOpened()";

And then, you should define the AfterDocumentOpened() JavaScript function in the aspx file of current page.

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