You are viewing an old version of this page. View the current version.
Compare with Current
View Page History
Version 1
Current »
- Process Form Modifier Plugin is used to modify the form design mapped to a process flow activity.
- It is able to configure through the "more settings" link under the mapped activity if there is at least one Process Form Modifier plugin installed.
- An useable Process Form Modifier Plugin must implement org.joget.apps.app.model.ProcessFormModifier interface.
- Under wflow-core module
- An interface to develop a Process Form Modifier Plugin.
public void modify(Form form, FormData formData, WorkflowAssignment assignment);
Modify the form element to add process assignment related element
Parameters
- form - the form to modify
- formData - the form data placeholder
- assignment - the workflow assignment object
public boolean customSubmissionHandling(Form form, FormData formData, WorkflowAssignment assignment);
Custom assignment form submission handling after the form data is saved.
Parameters
- form - the form to modify
- formData - the form data placeholder
- assignment - the workflow assignment object
Return false to complete assignment as usual.