In my custom widget i have a datagrid and on row click i am showing the location and infowindow on map. For Point the infowindow shows correctly but for polygon unless i click on map and then click on dgrid it wont show . Please guide me if am doing something wrong. Please find the code below.
Var polysymbol = new SimpleFillSymbol(SimpleFillSymbol.STYLE_NULL, new SimpleLineSymbol(SimpleLineSymbol.STYLE_SOLID, new Color([0,255,0]), 5), new Color([255,255,0,0.25]));
var clickPointGraphics = new Graphics(featureSet.features[0].geometry, polysymbol);
clickPointGraphics.setInfoTemplate(InfoTemplate);
this.map.graphics.add(clickPointGraphics);
this.map.infoWindow.SetTitle(title);
this.map.infoWindow.SetContent(Content);
this.map.infoWindow.show(featureSet.features[0].geometry, this.map.getInfoWindowAnchor(featureSet.features[0].geometry));