getPopups method

List<Popup> getPopups()

Returns a list of all active {@link Popup} objects linked to this session.

@remarks Includes popups actively created using {@link createPopup}, and also popups created on page load, if {@link PopupOptions.keepOpen} was set to true on an earlier page.

Only includes popups that are still mounted in the DOM. So if you call createPopup() but later remove its container element (or an ancestor of the container), then the Popup object will have been made invalid and is therefore not included in the results.

Implementation

external List<Popup> getPopups();