I'm running ArcGis Flex 3.6 and am having an issue where the Previous/Next buttons and Count on the ContentNavigator control will not show when selecting multiple graphics when running the release binaries of the map. While running the map through FlashBuilder debug, the ContentNavigator previous/next buttons show correctly.
Solved! Go to Solution.
Hi Jeremy,
Would you check this online sample to compare with your code about ContentNavigator
Identify features—ArcGIS API for Flex | ArcGIS for Developers
Also, make sure Change EVENT "IndexChangeEvent.CHANGE" is correct based on ContentNavigator API reference:
com.esri.ags.components.ContentNavigator
Hope this can help!
Hi Jeremy,
Would you check this online sample to compare with your code about ContentNavigator
Identify features—ArcGIS API for Flex | ArcGIS for Developers
Also, make sure Change EVENT "IndexChangeEvent.CHANGE" is correct based on ContentNavigator API reference:
com.esri.ags.components.ContentNavigator
Hope this can help!
Thanks for your help. This actually led me in the right direction for resolving the issue. For some reason the map selection was only selecting the top-most graphic. Using the sample you provided as a reference, I was able to setup a map click listener, clear out the existing dataprovider on the ContentNavigator for the map, and repopulate it with all graphics that match at that extent within each graphics layer.
Things seem to work as expected!
Thanks again.