Class actuate.parameter.EventConstants
Description
Defines the supported event constants for parameters. Table 44‑21 lists the parameter event constants.
Table 44‑21 Actuate JavaScript API parameter event constants
Event
Description
ON_CHANGE_COMPLETED
Event name triggered when the action is complete and no internal actions are triggered automatically. For example, when a cascading parameter is changed, its child parameter is changed automatically. This event is triggered when its child parameters are updated. The event handler takes the following arguments:
*actuate.Parameter: parameter component for which the event occurred
ON_CHANGED
Event triggered when a changed event occurs. For example, this event triggers if the value of a parameter control changes. The event handler takes the following arguments:
*actuate.Parameter: parameter component for which the event occurred
ON_EXCEPTION
Event triggered when an exception occurs. The event handler must take an actuate.Exception object as an input argument. The Exception object contains the exception information.
ON_SELECTION_CHANGED
Event triggered when a selection change occurs. For example, this event triggers if the value of a parameter list control changes. The event handler must take an actuate.Parameter object as an input argument. This input argument is the parameter component for which the event occurred.
ON_SESSION_TIMEOUT
Session time-out event. Whenever a session time-out event occurs and the user tries to perform any operation on parameter component, a prompt dialog will be shown to ask whether the user wants to log in again or not. If the user clicks yes, the ON_SESSION_TIMEOUT event will be fired. If no handler has been registered for this event, a default built-in login dialog will be displayed.
The event handler takes the following arguments:
*actuate.Parameter: component for which the event occurred