Is your feature request related to a problem? Please describe.
I would like to create confirmation prompts that ask the user if he really wants to proceed with an operation.
The prompt would display a custom message with an OK and Cancel buttons.
Describe the solution you'd like
For example:
<prompt type="okcancel" name="proceed" title="Are you sure you want to proceed with the operation?" onok="/continue" oncancel="/abort" failoncancel="true" />
If the user has selected OK, the property proceed should be set to value /continue.
If the user has selected Cancel, the property proceed should be set to value /abort.
If the attribute failoncancel is set to true, the action should fail if the user has clicked on Cancel button.
Describe alternatives you've considered
There does not seems to exists an action that can cancel the operation.
Additional context
N/A
Is your feature request related to a problem? Please describe.
I would like to create confirmation prompts that ask the user if he really wants to proceed with an operation.
The prompt would display a custom message with an
OKandCancelbuttons.Describe the solution you'd like
For example:
If the user has selected
OK, the propertyproceedshould be set to value/continue.If the user has selected
Cancel, the propertyproceedshould be set to value/abort.If the attribute
failoncancelis set totrue, the action should fail if the user has clicked onCancelbutton.Describe alternatives you've considered
There does not seems to exists an action that can cancel the operation.
Additional context
N/A