<?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 Layers for Identify Widget in ArcGIS API for Flex Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/layers-for-identify-widget/m-p/507266#M11537</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm obviously missing something pretty simple, but...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have added a dynamic layer to the Flex Viewer.&amp;nbsp; It shows fine.&amp;nbsp; I can't get the ID widget to return anything when clicking on my layers.&amp;nbsp; I have turned off the basemap layers during testing.&amp;nbsp; The ID widget works fine on the sample ESRI "Parcels" service / layers.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there something that has to be customized outside of the IdentifyWidget.xml and IdentifyWidget.mxml?&amp;nbsp; If so, please enlighten me.&amp;nbsp; Thanks!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Brad&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 May 2010 19:56:15 GMT</pubDate>
    <dc:creator>BradOleson</dc:creator>
    <dc:date>2010-05-26T19:56:15Z</dc:date>
    <item>
      <title>Layers for Identify Widget</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/layers-for-identify-widget/m-p/507266#M11537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm obviously missing something pretty simple, but...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have added a dynamic layer to the Flex Viewer.&amp;nbsp; It shows fine.&amp;nbsp; I can't get the ID widget to return anything when clicking on my layers.&amp;nbsp; I have turned off the basemap layers during testing.&amp;nbsp; The ID widget works fine on the sample ESRI "Parcels" service / layers.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there something that has to be customized outside of the IdentifyWidget.xml and IdentifyWidget.mxml?&amp;nbsp; If so, please enlighten me.&amp;nbsp; Thanks!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Brad&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 May 2010 19:56:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/layers-for-identify-widget/m-p/507266#M11537</guid>
      <dc:creator>BradOleson</dc:creator>
      <dc:date>2010-05-26T19:56:15Z</dc:date>
    </item>
    <item>
      <title>Re: Layers for Identify Widget</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/layers-for-identify-widget/m-p/507267#M11538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Brad,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; Does that layer in your mxd have the Shape and ObjectID fields visible?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 May 2010 12:09:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/layers-for-identify-widget/m-p/507267#M11538</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2010-05-28T12:09:32Z</dc:date>
    </item>
    <item>
      <title>Re: Layers for Identify Widget</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/layers-for-identify-widget/m-p/507268#M11539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Along the same lines, is there a way to get the Shape and OBJECTID fields to not show in the identify results?&amp;nbsp; I turn off all of the other attributes I don't want in the results but those two will always show up since they have to be on.&amp;nbsp; Our end users don't want to know the OBJECTID or whether or not something is a polygon.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 May 2010 14:22:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/layers-for-identify-widget/m-p/507268#M11539</guid>
      <dc:creator>JacksonTrappett</dc:creator>
      <dc:date>2010-05-28T14:22:20Z</dc:date>
    </item>
    <item>
      <title>Re: Layers for Identify Widget</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/layers-for-identify-widget/m-p/507269#M11540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jackson,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; You need to add some code to the processIdentifyResults function.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;old code&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
for (fld in obj)
{
&amp;nbsp;&amp;nbsp;&amp;nbsp; value = obj[fld].toString();
&amp;nbsp;&amp;nbsp;&amp;nbsp; content += fld + ": " + value + "\n";
}
&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;new code&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
for (fld in obj)
{
&amp;nbsp;&amp;nbsp;&amp;nbsp; value = obj[fld].toString();
&amp;nbsp;&amp;nbsp;&amp;nbsp; if((fld.toUpperCase().indexOf("OBJECTID")&amp;lt;0)||(fld.toUpperCase().indexOf("SHAPE")&amp;lt;0)){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; content += fld + ": " + value + "\n";
&amp;nbsp;&amp;nbsp;&amp;nbsp; }
}
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 22:14:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/layers-for-identify-widget/m-p/507269#M11540</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-11T22:14:21Z</dc:date>
    </item>
    <item>
      <title>Re: Layers for Identify Widget</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/layers-for-identify-widget/m-p/507270#M11541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;That works, thanks!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 May 2010 19:39:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/layers-for-identify-widget/m-p/507270#M11541</guid>
      <dc:creator>JacksonTrappett</dc:creator>
      <dc:date>2010-05-28T19:39:20Z</dc:date>
    </item>
    <item>
      <title>Re: Layers for Identify Widget</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/layers-for-identify-widget/m-p/507271#M11542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes, there are several layers in the map document, and all of them have the OBJECTID and SHAPE fields turned on.&amp;nbsp; I've tried it with several layers (the full MXD / map service needed) and a pared down MXD / Map Service (one with just a few layers).&amp;nbsp; Neither of them will return records when clicked on using the ID tool.&amp;nbsp; Any thoughts?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jun 2010 20:32:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/layers-for-identify-widget/m-p/507271#M11542</guid>
      <dc:creator>BradOleson</dc:creator>
      <dc:date>2010-06-01T20:32:35Z</dc:date>
    </item>
    <item>
      <title>Re: Layers for Identify Widget</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/layers-for-identify-widget/m-p/507272#M11543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I wondered what your &amp;lt;identifylayeroption&amp;gt; in identify.xml was set to?&amp;nbsp; I have mine set to visible and it honors that setting when the map first comes up (the visibility of the layers in the ArcMap project.)&amp;nbsp; However, when layers are made visible after the map has been opened, it does not honor those visibility settings.&amp;nbsp; For example, the initial view of the map has the address points turned on and the water meters are off.&amp;nbsp; I can identify the address points.&amp;nbsp; When I turn on the Water Meters, I am unable to identify them even though they are now visible.&amp;nbsp; Maybe my issue sheds some light on your issue?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;UPDATE!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have since found Robert Scheitlin's identify that DOES honor layer visibility.&amp;nbsp; Thank you Robert.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jun 2010 19:27:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/layers-for-identify-widget/m-p/507272#M11543</guid>
      <dc:creator>CaitlinBernier</dc:creator>
      <dc:date>2010-06-03T19:27:59Z</dc:date>
    </item>
    <item>
      <title>Re: Layers for Identify Widget</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/layers-for-identify-widget/m-p/507273#M11544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have mine set to "all", though I also tried "visible".&amp;nbsp; It doesn't seem to help much...or hasn't seemed to affect things, anyway.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jun 2010 19:35:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/layers-for-identify-widget/m-p/507273#M11544</guid>
      <dc:creator>BradOleson</dc:creator>
      <dc:date>2010-06-03T19:35:48Z</dc:date>
    </item>
    <item>
      <title>Re: Layers for Identify Widget</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/layers-for-identify-widget/m-p/507274#M11545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;All,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; A new version of the identify widget is now available.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;* 2.2.3 - Identify by point/line/extent/polygon are all now supported&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; - Info window will appear at the center of identified geometry now if returngeometryforzoom is set to true in xml file.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; if returngeometryforzoom is true, when you mouse over a record the geometry for that particular record is drawn using the symbology defined in the xml&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; - The symbology used by the draw tools is now user defined in the xml&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; - Fixed an issues with link icon if prefix or suffix is supplied and a empty field.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2011 17:52:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/layers-for-identify-widget/m-p/507274#M11545</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2011-03-28T17:52:15Z</dc:date>
    </item>
    <item>
      <title>Re: Layers for Identify Widget</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/layers-for-identify-widget/m-p/507275#M11546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello Robert, &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This may be a flex question, but does this identify tool support raster field links? I'm trying to decide whether to load some images into a raster field, or do a more traditional hyperlink. The only problem... the images are buried deep in our file folder structure, and a raster field seems more efficient. Thanks for your time.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2011 19:13:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/layers-for-identify-widget/m-p/507275#M11546</guid>
      <dc:creator>WilliamRockwell</dc:creator>
      <dc:date>2011-03-28T19:13:49Z</dc:date>
    </item>
    <item>
      <title>Re: Layers for Identify Widget</title>
      <link>https://community.esri.com/t5/arcgis-api-for-flex-questions/layers-for-identify-widget/m-p/507276#M11547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Will,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; Raster fields are not supported by REST so the answer is no don't use them if you want to hyperlink to them from the web.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Mar 2011 19:16:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-flex-questions/layers-for-identify-widget/m-p/507276#M11547</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2011-03-28T19:16:10Z</dc:date>
    </item>
  </channel>
</rss>

