I was just experiencing this same problem using the editor dijit with the attribute inspector displaying in a div instead of the info window.
An empty info window kept popping up on screen.
My solution was to set the following styles in my css stylesheet.
#map_infowindow {
display:none;
visibility:hidden;
}
.window {
display:none;
visibility:hidden;
}
Hope this helps! 🙂
Kathleen's solution seems to work the best. Guaranteed to hide the window. Unfortunately the CSS has changed. This is what I used:#map_root .esriPopup {
display: none;
visibility: hidden;
}
I'm not sure if #map_root is always consistent as my div is #map and I wonder if it appends _root to the popup's container div. So you may simply want to hide any div with the esriPopup class in your map div.#map .esriPopup {
display: none;
visibility: hidden;
}