a month ago
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.
a month ago
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.
a month ago
How are you building the modals?
a month ago
@gary1 i am building them via slack workbot
a month ago - last edited a month ago
Hi @jarh15 ,
To the best of my knowledge, you can achieve this in two ways:
When the User Can Select More Than 3 Outcomes:
Do let us know if you find better solution to share with the community.
a month ago
@1dheeraj2 Thank you so much for this response! This is helpful but I have one ask -- the user does not usually know the exact name of the use cases so it would be better if the use cases were displayed for them either in a drop down or checkbox instead of them having to type them in. Is this possible?