addOnStageSelected (Client API reference)

Adds a function as an event handler for the OnStageSelected event so that it will be called when a business process flow stage is selected.

Syntax

formContext.data.process.addOnStageSelected(myFunction);

Parameter

Name Type Required Description
myFunction Function reference Yes The function to be executed when the business process flow stage is selected. The function will be added to the bottom of the event handler pipeline. The execution context is automatically passed as the first parameter to the function. See Execution context for more information.

You should use a reference to a named function rather than an anonymous function if you may later want to remove the event handler.

removeOnStageSelected
formContext.data.process