I planned to create an infoWindow and display it after clicking a irem in a datagrid. I referred to ESRI's code at http://help.arcgis.com/en/webapi/flex/samples/index.html#/InfoWindow_on_MouseOver/01nq0000001q000000.... The existing source code is below: <esri:Map id="myMap" load="zoomToSouthCarolina()"> <esri:infoWindowContent> <mx:TextArea id="myTextArea" width="250" height="75"/> </esri:infoWindowContent> ... </esri:Map> Since this infoWindow in a widget where there is no need to define "myMap" again. How can I add the infoWindow (or inforWindowContent) to the defined "map"? Thabnks.