I am trying to use a FeatureLayer to search for meters in our service territory. The searching works great, but I can't seem to get it to change the view so that all the returned features are in view. I was attempting to do it as follows, but it isn't working. The meters are in a layer that is visible only at a certain zoom level and I made sure to be zoomed in to the appropriate level before conducting the search.private function updateEndFunction(event:Event):void
{
var graphicsExtent:Extent = GraphicUtil.getGraphicsExtent(fLayer.selectedFeatures);
OutageMap.extent = graphicsExtent;
}