Solved! Go to Solution.
Nic,
Also the map can only display one InfoWidow at a time (ultimately PopUps use the maps info window to display and the map is limited to one info window at a time).
var popups:ArrayCollection = new ArrayCollection();
for each (var rsltObj:Object in allResults)
{
var pr:PopUpRenderer = new PopUpRenderer();
var gr:Graphic = (rsltObj as IdResult).graphic;
pr.popUpInfo = configurePopUpInfo(...);
pr.graphic = gr;
popups.addItem(pr);
}
contentNavigator.dataProvider = popups;
map.infoWindow.content = contentNavigator;
...