cancel
Showing results for 
Search instead for 
Did you mean: 

Help with Modal UI Logic and Selections

jarh15
Deputy Chef II
Deputy Chef II

Hi all,

I'm trying to build a user experience with modals where a user makes selections in two steps. I need help figuring out the best way to structure this interaction using Workato. Here's what I'm trying to achieve:

 

Step 1: First Modal – Choose Outcomes 

The first modal should present 6 outcome options. The user can select up to 3 of them. It should look like this:

Screenshot 2025-05-21 at 2.32.49 PM.png

Example selection: User picks Outcome 1, Outcome 4, and Outcome 5.

Step 2: Second Modal 

After the first modal, a second modal should open. This one displays the selected outcomes from step 1, and for each of them, a list of associated use cases (max 3 selectable per outcome).

So if the user selected Outcome 1, Outcome 4, Outcome 5

The second modal should look like this image:

Screenshot 2025-05-21 at 2.28.40 PM.png

 

1 ACCEPTED SOLUTION

If the modal is popping up as blank, please check the payload generated by the Python script.

The view_submission recipe does not need to be called from anywhere. This recipe will be the sole receiver of any custom view submissions. It will automatically get triggered independently in a separate recipe when you submit the modal in the original recipe. You just have to handle this triggered recipe separately, unlike the default modal where you get the response in the same recipe.

View solution in original post

14 REPLIES 14

Thank you so much. I've gotten the modal to pop up but it is blank. I think I'm still having trouble with the view submission recipe. Where do I need to call this recipe in the original recipe?

If the modal is popping up as blank, please check the payload generated by the Python script.

The view_submission recipe does not need to be called from anywhere. This recipe will be the sole receiver of any custom view submissions. It will automatically get triggered independently in a separate recipe when you submit the modal in the original recipe. You just have to handle this triggered recipe separately, unlike the default modal where you get the response in the same recipe.

Thank you, can I see the sample view_submission trigger recipe?

This is working now! Thank you so much, this was a life saver!!

 

good to know its working 🙂