I think its a little problem for you gurus, I want to add a confirmation box on stage completion of Business process flow. So I want to seek your kind help in this regard.
Asked
Active
Viewed 728 times
1 Answers
0
I'm not (yet) familiar with business process flows, but I understand they're basically real-time workflows attached to the form: I'd attempt "cheating" the system like this:
- Add two new fields to the form, make them hidden and readonly
- Attach to one of the new field's onchange the code to request confirmation
- Split the flow in two parts, before and after the confirmation
- The first half is what you invoke in place of what you have now
- Attach to the other field the second half of the flow
- The onchange will request confirmation
- on confirm, change the second field's value (so the second half of the flow runs)
Logic similar to when you needed to perform real-time processsing through plugins (change hidden field - save - preupdate plugin)

Alex
- 23,004
- 4
- 39
- 73