I have a page where I load three maps from arcgis.com using ArcGIS API for Javascript. All of them are loaded in hidden divs.
When I click in the map to show the infowindow, after I make the map visible, it shows the infowindow displaced. However, if I open the developer tools of Chrome or resize the browser, the infowindow shows in its place. It seems that there is a resize event.
I have tried using
dojo.byId("map").resize()
after showing the map but is says
TypeError: Object #<HTMLDivElement> has no method 'resize'
How can I simulate global resize event without resizing the browser?
Well, resize() is not a html DOM specific method, this is related to map object. try resize and reposition with map object.
try this(sample with AMD):-