| Package | com.esri.ags.webmap.supportClasses |
| Class | public class PopUpInfo |
| Inheritance | PopUpInfo flash.events.EventDispatcher |
| Since : | ArcGIS API for Flex 2.3 |
| Property | Defined By | ||
|---|---|---|---|
| description : String
The main content of the pop-up unless no description is set, in which case the pop-up will instead show the visible fields in a key-value styled table. | PopUpInfo | ||
| popUpFieldInfos : Array
Array of PopUpFieldInfo for configuring fields to show inside a pop-up window. | PopUpInfo | ||
| popUpMediaInfos : Array
Array of PopUpMediaInfo for configuring media (images and/or charts) to show inside a pop-up window. | PopUpInfo | ||
| showAttachments : Boolean
If true, and layer supports attachments, displays attachments using the AttachmentInspector. | PopUpInfo | ||
| title : String
The title to use by the PopUpRenderer. | PopUpInfo | ||
| description | property |
description:StringThe main content of the pop-up unless no description is set, in which case the pop-up will instead show the visible fields in a key-value styled table. The description supports using field substitution using a {FIELD} style syntax. Basic Flash Player HTML is also supported. Using the default PopUpRendererSkin, the description will show below the title and above any media and/or attachments.
This property can be used as the source for data binding.
public function get description():String public function set description(value:String):voidSee also
description = "{SUMMARY}"
description = "ZIP Code {ZIPCODE}"
description = "The population of {NAME} is {POP}."
description = "<p>The population of <b>{NAME}</b> is {POP}.</p><p>The annual income is {INCOME}.</p>"| popUpFieldInfos | property |
public var popUpFieldInfos:ArrayArray of PopUpFieldInfo for configuring fields to show inside a pop-up window.
See also
| popUpMediaInfos | property |
public var popUpMediaInfos:ArrayArray of PopUpMediaInfo for configuring media (images and/or charts) to show inside a pop-up window.
See also
| showAttachments | property |
showAttachments:BooleanIf true, and layer supports attachments, displays attachments using the AttachmentInspector. Using the default PopUpRendererSkin, the attachments will show below main content and any media.
The default value is false.
This property can be used as the source for data binding.
public function get showAttachments():Boolean public function set showAttachments(value:Boolean):voidSee also
| title | property |
title:StringThe title to use by the PopUpRenderer. Using the default PopUpRendererSkin, the title will show in bold above horizontal line and the main content.
This property can be used as the source for data binding.
public function get title():String public function set title(value:String):void
title = "{ZIPCODE}"
title = "ZIP Code {ZIPCODE}"