05-21-2025 02:35 PM
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:
The first modal should present 6 outcome options. The user can select up to 3 of them. It should look like this:
Example selection: User picks Outcome 1, Outcome 4, and Outcome 5.
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:
Solved! Go to Solution.
05-22-2025 01:28 PM
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.
05-22-2025 11:21 AM
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?
05-22-2025 01:28 PM
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.
05-22-2025 01:38 PM
Thank you, can I see the sample view_submission trigger recipe?
05-22-2025 02:22 PM
This is working now! Thank you so much, this was a life saver!!
05-22-2025 06:18 PM
good to know its working 🙂