<?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: Highlight Features / Selection in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/highlight-features-selection/m-p/11217#M1090</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How did I miss that.....oh man....&lt;/P&gt;&lt;P&gt;Thanks Robert&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 22 Feb 2020 02:31:31 GMT</pubDate>
    <dc:creator>jaykapalczynski</dc:creator>
    <dc:date>2020-02-22T02:31:31Z</dc:date>
    <item>
      <title>Highlight Features / Selection</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/highlight-features-selection/m-p/11214#M1087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am modifying this example:&amp;nbsp;&lt;A class="link-titled" href="https://developers.arcgis.com/javascript/latest/sample-code/sandbox/index.html?sample=highlight-features-by-geometry" title="https://developers.arcgis.com/javascript/latest/sample-code/sandbox/index.html?sample=highlight-features-by-geometry"&gt;ArcGIS API for JavaScript Sandbox&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. I changed the data source&lt;/P&gt;&lt;P&gt;2. I added a couple text boxes to return the results of the selected&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For some reason, which I cannot figure out, I am only returning the OBJECTID....none of the other fields are being returned.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I created this JSFiddle to show my mods....&lt;A class="link-titled" href="https://jsfiddle.net/Jaykapalczynski/9ra6qL8c/2/" title="https://jsfiddle.net/Jaykapalczynski/9ra6qL8c/2/"&gt;Edit fiddle - JSFiddle - Code Playground&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyone out there see why all the other fields are not showing up??????&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Feb 2020 20:57:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/highlight-features-selection/m-p/11214#M1087</guid>
      <dc:creator>jaykapalczynski</dc:creator>
      <dc:date>2020-02-21T20:57:58Z</dc:date>
    </item>
    <item>
      <title>Re: Highlight Features / Selection</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/highlight-features-selection/m-p/11215#M1088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Updated JSFiddle:&amp;nbsp;&amp;nbsp;&lt;A class="link-titled" href="https://jsfiddle.net/Jaykapalczynski/9ra6qL8c/5/" title="https://jsfiddle.net/Jaykapalczynski/9ra6qL8c/5/"&gt;Edit fiddle - JSFiddle - Code Playground&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Feb 2020 21:00:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/highlight-features-selection/m-p/11215#M1088</guid>
      <dc:creator>jaykapalczynski</dc:creator>
      <dc:date>2020-02-21T21:00:34Z</dc:date>
    </item>
    <item>
      <title>Re: Highlight Features / Selection</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/highlight-features-selection/m-p/11216#M1089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;You need to specify outFields in the FeatureLayer constructor.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;        csvLayer &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;new&lt;/SPAN&gt; &lt;SPAN class="token class-name"&gt;FeatureLayer&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
            title&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"Counties"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
            url&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; url&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
            outFields&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"*"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
            popupTemplate&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 20:29:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/highlight-features-selection/m-p/11216#M1089</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-10T20:29:04Z</dc:date>
    </item>
    <item>
      <title>Re: Highlight Features / Selection</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/highlight-features-selection/m-p/11217#M1090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How did I miss that.....oh man....&lt;/P&gt;&lt;P&gt;Thanks Robert&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Feb 2020 02:31:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/highlight-features-selection/m-p/11217#M1090</guid>
      <dc:creator>jaykapalczynski</dc:creator>
      <dc:date>2020-02-22T02:31:31Z</dc:date>
    </item>
  </channel>
</rss>

