I have substantially configured the content and design of my Feature Layer popups, so I would want to disable the popups that appear after clicking on the query result symbols. I have managed to disable popups appearing when selecting a query result from the results window but I haven't figured out a way to disable them when clicking the results on the map.
Does anybody have any suggestions for me?
Solved! Go to Solution.
Mihkel,
The query widget adds the infoTemplate to the results feature at line 1565:
feature.setInfoTemplate(infoTemplate);
Mihkel,
The query widget adds the infoTemplate to the results feature at line 1565:
feature.setInfoTemplate(infoTemplate);
Wow! This was really easy! Thanks for the quick reply, Robert!
Thanks for this,
Can you show how you did it when clicking in the results window.
Thanks
Dave,
The infoWindow is shown at line 1662:
this.map.infoWindow.show(centerPoint);
love it when it's simple,
thanks!