beforeInvoke event
- Last Updated: April 9, 2019
- 1 minute read
- OpenEdge
- Version 13.0
- Documentation
beforeInvoke event
Fires when a custom invocation method is called asynchronously on a JSDO before the request for the Invoke operation is sent to the server.
Synchronous invocation method calls do not cause this event to fire.
Applies to: progress.data.JSDO class
Syntax
The following parameters appear in the signature of any event handler (callback) function (or functions) that you subscribe to this event:
|
- jsdo
- A reference to the JSDO that is invoking the method. For more information, see the description of jsdo property of the request object.
- request
- A reference to the request object returned before the operation begins. For more information, see the description of request object.
Application code can subscribe a callback to this event by invoking the
subscribe( ) method on a JSDO instance.
subscribe( ) method requires that you pass, as a parameter, the name of the
invocation method to which the event applies.Example
The following code fragment subscribes the function, onBeforeInvokeGetOrderTotalAndStatus, to handle the beforeInvoke event fired on the JSDO, dataSet, for an invocation of the getOrderTotalAndStatus( ) invocation method passed the parameters specified by
paramObject:
|
See also:
afterInvoke event, invocation method, subscribe( ) method (JSDO class), unsubscribe( ) method (JSDO class)