Hi, I can't find any way of populating field data from one activity to another activity in the workflow process. When we use sub-forms it dictates the entire form.

I require only some particular field's data from first activity's form onto the second activity's form. Now I am using some external coding to fulfill this.

But Is there any easy way of achieving this using Joget components?  

  • No labels

4 Comments

  1. Hi Denslyn,

    If your forms are using the same Table Name, then you can just use the same field ID in both forms.

    Hope this helps!

    Best Regards
    Julian

    1. Thanks Julian.

      But I am using different table names and I have mapped external forms to the activities. Is there any way of using Joget components

      to populate data from one form(activity) to another in the workflow process.

      Regards,

      Denslyn

      1. Hi there,

        If you are using external form then Joget would not be able to access form data outside of it. You must use coding to retrieve them and set them to Joget form fields. Please see Load & Store Form Grid Data Using Bean Shell Form Binder on how to retrieve data from external DB.

        If you are still storing form data within Joget, then you may create a form with lesser fields that still points to the target table and use it as your subform to only show certain fields in your next activity's form.

        Hope this helps.

        1. Thanks Hugo.