Reputation: 21
I am developing a custom workflow, which should have a datetime field so that user can select a date and time schedule the workflow at review step.
How can I add add datetime field and schedule the workflow?
Upvotes: 0
Views: 938
Reputation: 1856
AEM provides a Dialog Participant Step. This allows user to add custom dialog to workflow step. Following steps can be done to use custom dialog
datetime
xtype filed in that.Now this date selected in step 3 can be used to schedule using AbsoluteTimeAutoAdvancer
or custom AbsoluteTimeoutHandler
implementation.
For the dialog created in classic UI, you would need to provide Touch UI dialog path to make it compatible with AEM 6.1 as it expects a property touchUiDialogPath
Upvotes: 0