Want to when navigating on the popup results to create highlight and zoom to the selected results. The layer is MapImageLayer , so some customization should be done on identify. But not get any idea to catch the click event on "previous" and "next" button.
Solved! Go to Solution.
I have done this by using `watch()` from `reactiveUtils` on the view's `view.popup.selectedFeature` property. See an example here: https://codepen.io/fdeters/pen/ZYOzdLK
I have done this by using `watch()` from `reactiveUtils` on the view's `view.popup.selectedFeature` property. See an example here: https://codepen.io/fdeters/pen/ZYOzdLK
Also, the Popup map component is still in beta, but you'll be able to do something similar with an event-based approach using the `arcgisPropertyChange` event: https://developers.arcgis.com/javascript/latest/references/map-components/arcgis-popup/#arcgisProper...
@fdeters Thank you so much for your solution👍