Attaching an image
After the alert (success!) is shown I want to close the popup.
But even with 9999+ ms hold alert is so quick on a screen you can’t even see it!
What do I do and how to fix it? Thank you
Attaching an image
After the alert (success!) is shown I want to close the popup.
But even with 9999+ ms hold alert is so quick on a screen you can’t even see it!
What do I do and how to fix it? Thank you
Is you Alert is in the popup?
Is the alert within the popup you’re immediately hiding?
how would I do it within the popup?
This is the issue. You are closing the popup, so alert is closed too with the popup.
If you are not using a reusable element, just move the alert to the page instead.
how would i do it within the popup?
Where is the alert currently showing?
The assumption here is that your alert is being shown in the popup, which your workflow is immediately hiding, which is why your alert is not being seen.
In that case you need to add a pause between showing the alert and closing the popup, or show the alert on the page instead so it will be visible after the popup has closed.
If your alert is not in the popup then there must be some other issue. So where is the alert being shown?
I succeeded with add a pause, didn’t know it exists! Thank you very much
This topic was automatically closed after 70 days. New replies are no longer allowed.