Usages

  • 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.

Interface

org.joget.apps.app.model.ProcessFormModifier

  • Under wflow-core module
  • An interface to develop a Process Form Modifier Plugin. 

Method Detail

Interface Methods
modify
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
customSubmissionHandling
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.

  • No labels