- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2019 06:08 AM
Hello everyone,
I want to start workflow without any document. Once user starts the workflow task will be assigned to another user where he/she can attach document to the workflow.
Form when user starts the workflow..
In this form we have option to add the document..
Form when task goes to another user..
In this form Add button is not available.
How can we add document to this form?
Thanks
- Labels:
-
Alfresco Content Services
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2019 07:02 AM
Hello,
In your workflow model defnition for this task try to override the property bpmackageActionGroup with value add_package_item_actions.
<type name="mynamespace:taskname"> <parent>bpm:workflowTask</parent> <overrides> <property name="bpm:packageActionGroup"> <default>add_package_item_actions</default> </property> </overrides></type>
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2019 07:02 AM
Hello,
In your workflow model defnition for this task try to override the property bpmackageActionGroup with value add_package_item_actions.
<type name="mynamespace:taskname"> <parent>bpm:workflowTask</parent> <overrides> <property name="bpm:packageActionGroup"> <default>add_package_item_actions</default> </property> </overrides></type>
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2019 09:24 AM
Issue resolved.
Thanks for the help.
