<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Attribute Inspector Problem in ArcGIS API for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/attribute-inspector-problem/m-p/188946#M4410</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Looks Like it's working...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]32368[/ATTACH]&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Mar 2014 19:41:31 GMT</pubDate>
    <dc:creator>KomanDiabate</dc:creator>
    <dc:date>2014-03-20T19:41:31Z</dc:date>
    <item>
      <title>Attribute Inspector Problem</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/attribute-inspector-problem/m-p/188945#M4409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am try to learn how to use attribute inspector but the problem is I dont understand why this doesnt work on point layer. I know this code works for polygons. I know is something simple to change to make it work with points layer I just don't know where.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Can anyone help me to fix the following code.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;&amp;lt;?xml version="1.0" encoding="utf-8"?&amp;gt;
&amp;lt;s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xmlns:s="library://ns.adobe.com/flex/spark"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xmlns:esri="http://www.esri.com/2008/ags"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pageTitle="Attribute Inspector outside the Map"&amp;gt;
 &amp;lt;!--
 Description:
 This sample demonstrates how you can use the AttributeInspector outside of
 an InfoWindow.
 The AttributeInspector can be placed anywhere.&amp;nbsp; Most samples show it
 inside the InfoWindow, but it can also be in a floating panel, or beneath
 the map - as in this example.
 
 The AttributeInspector gets it content from the selection of the feature
 layers that it is connected with.
 &amp;lt;esri:AttributeInspector featureLayers="{[fLayer]}"/&amp;gt;
 
 Selection by map click versus selection by rectangle:
 There are multiple ways to catch user input.
 If you want people to select feature using a rectangle, the easiest way
 is to use the DrawTool with the EXTENT draw type.
 To select features by clicking on the map, use either:
 a) the mapClick event on the map, or
 b) the DrawTool with the MAPPOINT draw type.
 
 Documentation:
 For more information, see the API documentation.
 https://developers.arcgis.com/en/flex/api-reference/com/esri/ags/components/AttributeInspector.html
 https://developers.arcgis.com/en/flex/api-reference/com/esri/ags/components/supportClasses/FieldInspector.html
 https://developers.arcgis.com/en/flex/api-reference/com/esri/ags/events/AttributeInspectorEvent.html
 https://developers.arcgis.com/en/flex/api-reference/com/esri/ags/layers/FeatureLayer.html
 --&amp;gt;
 &amp;lt;s:layout&amp;gt;
&amp;nbsp; &amp;lt;s:VerticalLayout gap="0"/&amp;gt;
 &amp;lt;/s:layout&amp;gt;
 &amp;lt;fx:Script&amp;gt;
&amp;nbsp; &amp;lt;![CDATA[
&amp;nbsp;&amp;nbsp; import com.esri.ags.Graphic;
&amp;nbsp;&amp;nbsp; import com.esri.ags.SpatialReference;
&amp;nbsp;&amp;nbsp; import com.esri.ags.events.AttributeInspectorEvent;
&amp;nbsp;&amp;nbsp; import com.esri.ags.events.DrawEvent;
&amp;nbsp;&amp;nbsp; import com.esri.ags.events.GraphicEvent;
&amp;nbsp;&amp;nbsp; import com.esri.ags.events.MapMouseEvent;
&amp;nbsp;&amp;nbsp; import com.esri.ags.geometry.Extent;
&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; import mx.controls.Alert;
&amp;nbsp;&amp;nbsp; import mx.rpc.events.FaultEvent;
&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; private function select_clickHandler():void
&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; myDrawTool.activate(DrawTool.EXTENT);
&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; private function clear_clickHandler():void
&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; highlightGraphicsLayer.clear();
&amp;nbsp;&amp;nbsp;&amp;nbsp; fLayer.clearSelection();
&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; protected function map_mapClickHandler(event:MapMouseEvent):void
&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; // set the selection query based on the click
&amp;nbsp;&amp;nbsp;&amp;nbsp; queryByGeometry.geometry = event.mapPoint;
&amp;nbsp;&amp;nbsp;&amp;nbsp; fLayer.selectFeatures(queryByGeometry); // default selectionMethod is FeatureLayer.SELECTION_NEW
&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; private function attributesinspector_showFeatureHandler(event:AttributeInspectorEvent):void
&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; highlightGraphicsLayer.clear();
&amp;nbsp;&amp;nbsp;&amp;nbsp; var g:Graphic = new Graphic(event.feature.geometry);
&amp;nbsp;&amp;nbsp;&amp;nbsp; g.toolTip = event.feature.toolTip;
&amp;nbsp;&amp;nbsp;&amp;nbsp; highlightGraphicsLayer.add(g);
&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; private function drawEndHandler(event:DrawEvent):void
&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; // const myDrawTool:DrawTool = event.target as DrawTool;
&amp;nbsp;&amp;nbsp;&amp;nbsp; myDrawTool.deactivate();
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; if (event.graphic.geometry is Extent)
&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; queryByGeometry.geometry = event.graphic.geometry;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fLayer.selectFeatures(queryByGeometry);
&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; private function fLayer_faultHandler(event:FaultEvent):void
&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; Alert.show(event.fault.faultString + "\n\n" + event.fault.faultDetail, "FeatureLayer error " + event.fault.faultCode);
&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; private function zoomToNorthCarolina():void
&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; var northCarolinaExtent:Extent = new Extent(-9374000, 3987000, -8409000, 4386000, new SpatialReference(102100));
&amp;nbsp;&amp;nbsp;&amp;nbsp; myMap.extent = northCarolinaExtent;
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; // make sure the whole extent is visible
&amp;nbsp;&amp;nbsp;&amp;nbsp; if (!myMap.extent.contains(northCarolinaExtent))
&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; myMap.level--;
&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; protected function fLayer_graphicAddHandler(event:GraphicEvent):void
&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; // add tool tips
&amp;nbsp;&amp;nbsp;&amp;nbsp; event.graphic.toolTip = event.graphic.attributes.NAME;
&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp; protected function getFeatureCount(value:Array):int
&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp; return value.length;
&amp;nbsp;&amp;nbsp; }
&amp;nbsp; ]]&amp;gt;
 &amp;lt;/fx:Script&amp;gt;
 
 &amp;lt;fx:Declarations&amp;gt;
&amp;nbsp; &amp;lt;esri:Query id="queryByGeometry"/&amp;gt;
&amp;nbsp; &amp;lt;esri:DrawTool id="myDrawTool"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; drawEnd="drawEndHandler(event)"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; map="{myMap}"/&amp;gt;
&amp;nbsp; &amp;lt;esri:SimpleFillSymbol id="countySymbol" alpha="0.2"&amp;gt;
&amp;nbsp;&amp;nbsp; &amp;lt;esri:SimpleLineSymbol width="3" color="0xEEEEEE"/&amp;gt;
&amp;nbsp; &amp;lt;/esri:SimpleFillSymbol&amp;gt;
&amp;nbsp; &amp;lt;esri:SimpleMarkerSymbol id="defaultsym"&amp;nbsp; alpha="1" color="#726E6D" style="circle" size="24" &amp;gt;
&amp;nbsp; &amp;lt;/esri:SimpleMarkerSymbol&amp;gt;
 &amp;lt;/fx:Declarations&amp;gt;
 
 &amp;lt;s:controlBarContent&amp;gt;
&amp;nbsp; &amp;lt;s:RichText width="100%"&amp;gt;
&amp;nbsp;&amp;nbsp; This sample demonstrates how you can use the AttributeInspector outside of
&amp;nbsp;&amp;nbsp; an InfoWindow.&amp;nbsp; The AttributeInspector can be placed anywhere.&amp;nbsp; Most samples show it
&amp;nbsp;&amp;nbsp; inside the InfoWindow, but it can also be in a floating panel, or beneath
&amp;nbsp;&amp;nbsp; the map - as in this example.
&amp;nbsp; &amp;lt;/s:RichText&amp;gt;
 &amp;lt;/s:controlBarContent&amp;gt;
 
 &amp;lt;esri:Map id="myMap"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; load="zoomToNorthCarolina()"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mapClick="map_mapClickHandler(event)"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; wrapAround180="true"&amp;gt;
&amp;nbsp; &amp;lt;esri:ArcGISTiledMapServiceLayer url="http://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer"/&amp;gt;
&amp;nbsp; &amp;lt;esri:FeatureLayer id="fLayer"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fault="fLayer_faultHandler(event)"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; graphicAdd="fLayer_graphicAddHandler(event)"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mode="snapshot"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; outFields="*"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; symbol="{defaultsym}"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; url="http://67.78.127.3:6080/arcgis/rest/services/STEARWEBMAPTEST/FeatureServer/0"/&amp;gt;
&amp;nbsp; &amp;lt;esri:GraphicsLayer id="highlightGraphicsLayer"/&amp;gt;
 &amp;lt;/esri:Map&amp;gt;
 
 &amp;lt;s:Group width="100%" height="240"&amp;gt;
&amp;nbsp; &amp;lt;s:Rect width="100%" height="100%"&amp;gt;
&amp;nbsp;&amp;nbsp; &amp;lt;s:fill&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;s:SolidColor color="#D3D1D1"/&amp;gt;
&amp;nbsp;&amp;nbsp; &amp;lt;/s:fill&amp;gt;
&amp;nbsp; &amp;lt;/s:Rect&amp;gt;
&amp;nbsp; 
&amp;nbsp; &amp;lt;s:HGroup width="100%" height="240"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; paddingLeft="6"&amp;gt;
&amp;nbsp;&amp;nbsp; &amp;lt;s:BorderContainer backgroundColor="0xEEEEEE"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; borderColor="0xCECECE"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; borderWeight="2"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; contentBackgroundColor="0xEEEEEE"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; cornerRadius="5"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; minWidth="200"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; visible="{getFeatureCount(fLayer.selectedFeatures) &amp;gt; 0}"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:AttributeInspector id="attributeInspector"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; left="6" right="6" top="6" bottom="6"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; featureLayers="{[fLayer]}"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; showFeature="attributesinspector_showFeatureHandler(event)"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:FieldInspector featureLayer="{fLayer}"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fieldName="StateID"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; label="County Name"/&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:FieldInspector featureLayer="{fLayer}"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fieldName="ZipCode"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; label="Median Age"/&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:FieldInspector featureLayer="{fLayer}"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fieldName="FullAddres"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; label="Women"/&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:FieldInspector featureLayer="{fLayer}"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fieldName="AddressUni"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; label="Men"/&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:FieldInspector featureLayer="{fLayer}"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fieldName="PhoneNumbe"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; label="FIPS"/&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/esri:AttributeInspector&amp;gt;
&amp;nbsp;&amp;nbsp; &amp;lt;/s:BorderContainer&amp;gt;
&amp;nbsp;&amp;nbsp; &amp;lt;s:VGroup width="50%" height="100%"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;s:Button id="extentButton"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; click="select_clickHandler()"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; label="Select by Extent"/&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;s:Button click="clear_clickHandler()" label="Clear Selection"/&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;s:Rect width="1" height="5"/&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;s:Label width="100%"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; fontStyle="italic"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; text="Select a county by clicking on it on the map, or use the 'Select by Extent' button to select multiple counties.&amp;nbsp; The attribute inspector will reflect the current selection."/&amp;gt;
&amp;nbsp;&amp;nbsp; &amp;lt;/s:VGroup&amp;gt;
&amp;nbsp; &amp;lt;/s:HGroup&amp;gt;
 &amp;lt;/s:Group&amp;gt;
&amp;lt;/s:Application&amp;gt;&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Mar 2014 13:23:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/attribute-inspector-problem/m-p/188945#M4409</guid>
      <dc:creator>HectorChapa</dc:creator>
      <dc:date>2014-03-20T13:23:34Z</dc:date>
    </item>
    <item>
      <title>Re: Attribute Inspector Problem</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/attribute-inspector-problem/m-p/188946#M4410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Looks Like it's working...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]32368[/ATTACH]&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Mar 2014 19:41:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/attribute-inspector-problem/m-p/188946#M4410</guid>
      <dc:creator>KomanDiabate</dc:creator>
      <dc:date>2014-03-20T19:41:31Z</dc:date>
    </item>
    <item>
      <title>Re: Attribute Inspector Problem</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/attribute-inspector-problem/m-p/188947#M4411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Really wow in my machine I dont see that display.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Mar 2014 20:32:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/attribute-inspector-problem/m-p/188947#M4411</guid>
      <dc:creator>HectorChapa</dc:creator>
      <dc:date>2014-03-21T20:32:43Z</dc:date>
    </item>
  </channel>
</rss>

