<?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 FeatureTable events for cell selection and hover in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featuretable-events-for-cell-selection-and-hover/m-p/146693#M13662</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm using the JS API 3.29 and a FeatureTable. I would like to be able to fire events on individual cells rather than an entire row.&amp;nbsp;&lt;A href="https://developers.arcgis.com/javascript/3/jsapi/featuretable-amd.html#events"&gt;But the only documented events are for entire rows.&lt;/A&gt;&amp;nbsp;I found &lt;A _jive_internal="true" href="https://community.esri.com/thread/233873-using-a-jquery-selector-on-a-dgrid-column-header"&gt;this thread&lt;/A&gt; where&amp;nbsp;&lt;A href="https://community.esri.com/migrated-users/3101"&gt;Robert Scheitlin, GISP&lt;/A&gt; suggested using an event based on the grid's header using mouseover, but I can't get any events like that to work, using the headers or cells or anything. Does it have something to do with using a FeatureTable rather than a base Dojo dgrid?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 08 Jul 2019 14:45:20 GMT</pubDate>
    <dc:creator>Buckler_Tom</dc:creator>
    <dc:date>2019-07-08T14:45:20Z</dc:date>
    <item>
      <title>FeatureTable events for cell selection and hover</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featuretable-events-for-cell-selection-and-hover/m-p/146693#M13662</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm using the JS API 3.29 and a FeatureTable. I would like to be able to fire events on individual cells rather than an entire row.&amp;nbsp;&lt;A href="https://developers.arcgis.com/javascript/3/jsapi/featuretable-amd.html#events"&gt;But the only documented events are for entire rows.&lt;/A&gt;&amp;nbsp;I found &lt;A _jive_internal="true" href="https://community.esri.com/thread/233873-using-a-jquery-selector-on-a-dgrid-column-header"&gt;this thread&lt;/A&gt; where&amp;nbsp;&lt;A href="https://community.esri.com/migrated-users/3101"&gt;Robert Scheitlin, GISP&lt;/A&gt; suggested using an event based on the grid's header using mouseover, but I can't get any events like that to work, using the headers or cells or anything. Does it have something to do with using a FeatureTable rather than a base Dojo dgrid?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jul 2019 14:45:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featuretable-events-for-cell-selection-and-hover/m-p/146693#M13662</guid>
      <dc:creator>Buckler_Tom</dc:creator>
      <dc:date>2019-07-08T14:45:20Z</dc:date>
    </item>
    <item>
      <title>Re: FeatureTable events for cell selection and hover</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featuretable-events-for-cell-selection-and-hover/m-p/146694#M13663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tom,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;You can do the same thing with a FeatureTable.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;          &lt;SPAN class="token function"&gt;on&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;myFeatureTable&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"load"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;function&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;evt&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
            myFeatureTable&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;grid&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;on&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"th.field-Spp_Code:mouseover"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;function&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;
              console&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;info&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"hover"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
              &lt;SPAN class="comment token"&gt;//do your tooltip here&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="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>Sat, 11 Dec 2021 08:00:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featuretable-events-for-cell-selection-and-hover/m-p/146694#M13663</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-11T08:00:09Z</dc:date>
    </item>
    <item>
      <title>Re: FeatureTable events for cell selection and hover</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featuretable-events-for-cell-selection-and-hover/m-p/146695#M13664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah ok, because the grid (a dgrid) is a property of the FeatureTable. That makes sense. Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Jul 2019 16:16:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/featuretable-events-for-cell-selection-and-hover/m-p/146695#M13664</guid>
      <dc:creator>Buckler_Tom</dc:creator>
      <dc:date>2019-07-08T16:16:57Z</dc:date>
    </item>
  </channel>
</rss>

