Make InfoWindow popup open to the left, or on top of widget...

640
2
Jump to solution
03-28-2012 09:05 AM
JustinRiggs
New Contributor
Every time a popup window opens, it opens to the right of the feature I click on, which puts it underneath any widget that is open. Is there any way to change it so that the popup window opens to the left of the feature, or opens on top of the widget?

Thanks,

Justin
Tags (2)
0 Kudos
1 Solution

Accepted Solutions
RobertScheitlin__GISP
MVP Emeritus
Justin,

   Making the popup appear above the widgets is not possible as popups are just a child of the map and the map is always below the widgets for obvious reasons. You can however change the default placement of the popup to upperLeft instead of upperRight.

Just add this to the default.css in the Flex Viewer:

esri|InfoWindow {     infoPlacement : upperLeft; }


Don't forget to click the Mark as answer check on this post and to click the top arrow (promote) as shown below:

View solution in original post

0 Kudos
2 Replies
RobertScheitlin__GISP
MVP Emeritus
Justin,

   Making the popup appear above the widgets is not possible as popups are just a child of the map and the map is always below the widgets for obvious reasons. You can however change the default placement of the popup to upperLeft instead of upperRight.

Just add this to the default.css in the Flex Viewer:

esri|InfoWindow {     infoPlacement : upperLeft; }


Don't forget to click the Mark as answer check on this post and to click the top arrow (promote) as shown below:
0 Kudos
JustinRiggs
New Contributor
That's perfect. Thanks.
0 Kudos