Hey
Is there anyway to capture the close event on the Popup? It's great I can easily launch the Popup, but I want to know when the user closes it. Specifically this close button:
Thanks
Solved! Go to Solution.
Andrew,
In 3.x you look for the popups hide event
https://developers.arcgis.com/javascript/3/jsapi/popup-amd.html#event-hide
In 4.x
watchUtils.whenTrue(view.popup,'visible', function(){
watchUtils.whenFalseOnce(view.popup,'visible', function(){
console.info('popup has been closed');
})
});
Andrew,
In 3.x you look for the popups hide event
https://developers.arcgis.com/javascript/3/jsapi/popup-amd.html#event-hide
In 4.x
watchUtils.whenTrue(view.popup,'visible', function(){
watchUtils.whenFalseOnce(view.popup,'visible', function(){
console.info('popup has been closed');
})
});
Thanks! That's exactly what I was looking for