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> 

enter image description here


Comments

Popular posts from this blog

magento2 - Magento 2 admin grid add filter to collection -

Android volley - avoid multiple requests of the same kind to the server? -

Combining PHP Registration and Login into one class with multiple functions in one PHP file -