| Package | com.esri.aws.awx.widget |
| Class | public class WidgetPopupManager |
WidgetPopupManager.openWidget(findW);
WidgetPopupManager.openWidget(baseMapW,10,60);
See also
| Method | Defined by | ||
|---|---|---|---|
|
closeWidget(widget:IWidget):void
[static]
Close a widget in a FloatingWidgetContainer.
| WidgetPopupManager | ||
|
isWidgetOpen(widget:IWidget):Boolean
[static]
Check to see if a widget has already been opened.
| WidgetPopupManager | ||
|
openWidget(widget:IWidget, x:Number, y:Number, containerClass:Class = null):void
[static]
Pop open a widget in a FloatingWidgetContainer.
| WidgetPopupManager | ||
| closeWidget | () | method |
public static function closeWidget(widget:IWidget):voidClose a widget in a FloatingWidgetContainer.
Parameterswidget:IWidget — the IWidget to be closed.
|
| isWidgetOpen | () | method |
public static function isWidgetOpen(widget:IWidget):BooleanCheck to see if a widget has already been opened.
Parameterswidget:IWidget — the IWidget to be checked.
|
Boolean |
| openWidget | () | method |
public static function openWidget(widget:IWidget, x:Number, y:Number, containerClass:Class = null):voidPop open a widget in a FloatingWidgetContainer. If the specified x and/or y are outside the current map, they will be modified so that the widget shows up inside. If x and y are not specified, the widget will open at its last location.
Parameterswidget:IWidget — the IWidget to be opened.
|
|
x:Number — the x-position of the opening widget container.
|
|
y:Number — the y-position of the opening widget container.
|
|
containerClass:Class (default = null) — the class of the WidgetContainer being opened.
|