@richardmarais wrote:
Hi All,
I have a
popover
, that takes me to another page, where I pop back to the root page (popToRoot
), reload the data/dom on anevent
and then dismiss the popup in thepromise
when the json data comes back from the server. It all works fine if I have a largetimeout
on the dismiss.dismissPopup() { if (this.popover) { let that = this; setTimeout(function () { that.popover.dismiss(); }, 500); } }
If I make the timeout too low, say 100ms, it does not dismiss because the dom is still loading.
However, I don't think having a
timeout
is probably the best practice. What happens if someone has a slow devise, and the time is not enough?Can anyone please make any suggestions? Should I detect when the dom has loaded, and then call dismiss? How do I check if the dom had loaded?
Thanks
Posts: 1
Participants: 1