1
0
-1

i have a process where :

user submit container no → container details display (retrieve by JSON API in form) → end process.

However, user dont need to click the submit button after retrieve the container details since they already view data that they need resulting to stacking data in 'running porcess' in 'monitor'. So it is possible to make it auto end after a while?

    CommentAdd your comment...

    1 answer

    1.  
      1
      0
      -1

      Maybe instead of using a process, you can use a single form. 

      The form contains a single text field (container no e.g field id = field1) and an Ajax Subform. 

      The Ajax subform contains the form with JSON API. 

      configure the Ajax subform > Parent Field to keep Subform ID: field1
      ensure to pass the #requestParam.primaryKey# into the JSON API
      ref: AJAX Subform - Knowledge Base for DX 8 - Joget | COMMUNITY

      then probably use custom html to hide the save button

      fyi: i used the JSON Form Data Store - Knowledge Base for DX 8 - Joget | COMMUNITY sample app and modified it as mentioned above and it works


        CommentAdd your comment...