cancelCreateStageAssignment(containerItemID)
Cancels the current assignment in the create stage.
Returns
A Promise associated with the action.
Parameters
Name | Type | Description | Required |
containerItemID | string | The ID of the container item that contains information about the current assignment in the create stage. | ✅ |
Usage example
In this example, the success callback is called if the cancel action is successful.
const cancelCreateStageAssignmentPromise = getPConnect().getActionsApi().cancelCreateStageAssignment("app/modal_3");
cancelCreateStageAssignmentPromise.then(() => {
// cancel create stage assignment success handling
}).catch(() => {
// cancel create stage assignment failure handling
});
Previous topic cancelAssignment(containerItemID) Next topic changeHandler(pConn, event)