I am working on QueryBuilderWidget of FlexViewer 1.3.I want to zoom the selected row of DataGrid which is populated with the result of query.
Now when I write map.centerAt map doesn???t displayed but map point of corresponding DataGrid row is highlighted.While map.centerAt is working for another widgets.
if (map.scale > zoomScale)
map.scale = zoomScale;
map.centerAt(MapPoint(gr.geometry));
map.infoWindow.styleName = "myInfoWindow";
map.infoWindow.show(MapPoint(gr.geometry) );
map.infoWindowContent=vBoxData;
please suggest me some way to center the map at selected map point.