callback_before_execute_handler

Client side event handler for Callback.ClientSideBeforeExecute and CallbackPanel.ClientSideBeforeExecute.

Note: This is a prototype, not a function. You should provide a function that matches this prototype if you wish to handle the corresponding event on the client side. The prototype provides information about the arguments and return value of the function you provide.

Syntax
JavaScript
 callback_before_execute_handler(callback)

Parameters

callback
The Callback object that triggered the callback.

Return Value

Returns false to cancel the callback.

Remarks

You should provide this function if you want to use client side event handling. This function gives you an opportunity to examine the parameter or perform any other action before a callback is started. You can also optionally cancel the callback by returning false from this function.

You can use getTriggerId and getParam to get more information about the current callback.

See Also