javascript - Customize Alfresco form, when workflow completed -
we doing customizations alfresco workflow details page manipulating share-config.xml
when workflow in progress, fields in workflow details displayed expected.
but when workflow completes, not able view workflow details page customization , rendering default form.
is there anyway can customize it, after workflow completes.
any dom manipulation ways fine.
sample code, trying
<config evaluator="task-type" condition="icmrwf:submitartefacttask"> <forms> <form id="workflow-details"> <field-visibility> <show id="bpm:groupassignee" /> <show id="icmrwf:workgroup" /> <show id="bpm:sendemailnotifications" /> <show id="packageitems" /> </field-visibility> <appearance> <set id="" appearance="title" label-id="workflow.set.workflow.more_info" /> <set id="items" appearance="title" label-id="workflow.set.items" /> <field id="packageitems" set="items" /> </appearance> </form> </forms> </config>
Comments
Post a Comment