I have created Custom Workflow and custom task properties assigned to it, when i open workflow from share , i can see the workflow in the list and it shows the defined custom properties , along with that some default properties comes with that ie. Workflow due date, Workdlow description etc, how we can remove that properties? I have already hidden those fields in share config file? but still it is showing.Any idea to remove such properties ?
If you want to hide properties from workflow start form, then copy the following code to your share-config-custom.xml.
<config evaluator="string-compare" condition="activiti$your_Process_Id">
<forms>
<form>
<field-visibility>
<hide id="bpm:workflowDescription" />
<hide id="bpm:workflowDueDate" />
</field-visibility>
</form>
</forms>
</config>
Add your required property to hide element within field-visibility element.