<?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 How to use the &amp;amp;amp;amp;quot;Show find task results in a DataGrid&amp;amp;amp;amp;quot; with a Query task in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-use-the-amp-amp-amp-quot-show-find-task/m-p/702215#M65356</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;What is required to use this sample with a Query task instead of a Find task?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A class="jive-link-external-small" href="https://developers.arcgis.com/javascript/jssamples/find_map_datagrid.html" rel="nofollow" target="_blank"&gt;Show find task results in a DataGrid&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My understanding of a Find task is that it can only query the primary display field through a 'text' query, rather than querying any field through a where clause.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-m&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 09 Jun 2014 19:53:03 GMT</pubDate>
    <dc:creator>MatthewBaker2</dc:creator>
    <dc:date>2014-06-09T19:53:03Z</dc:date>
    <item>
      <title>How to use the &amp;amp;amp;quot;Show find task results in a DataGrid&amp;amp;amp;quot; with a Query task</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-use-the-amp-amp-amp-quot-show-find-task/m-p/702215#M65356</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;What is required to use this sample with a Query task instead of a Find task?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A class="jive-link-external-small" href="https://developers.arcgis.com/javascript/jssamples/find_map_datagrid.html" rel="nofollow" target="_blank"&gt;Show find task results in a DataGrid&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My understanding of a Find task is that it can only query the primary display field through a 'text' query, rather than querying any field through a where clause.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-m&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jun 2014 19:53:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-use-the-amp-amp-amp-quot-show-find-task/m-p/702215#M65356</guid>
      <dc:creator>MatthewBaker2</dc:creator>
      <dc:date>2014-06-09T19:53:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to use the "Show find task results in a DataGrid" with a Query task</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-use-the-amp-amp-amp-quot-show-find-task/m-p/702216#M65357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;hey matt,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;sounds like you're on track to me.&amp;nbsp; &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://resources.arcgis.com/en/help/arcgis-rest-api/index.html#/Find/02r3000000zm000000/" rel="nofollow" target="_blank"&gt;find&lt;/A&gt;&lt;SPAN&gt; is an operation of a map service which allows you to search more than one layer at a time (via SQL expressions only).&amp;nbsp; &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://resources.arcgis.com/en/help/arcgis-rest-api/index.html#/Query_Feature_Service_Layer/02r3000000r1000000/" rel="nofollow" target="_blank"&gt;query&lt;/A&gt;&lt;SPAN&gt; is an operation of the feature layer itself and supports both SQL and spatial filters.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;although it uses a JS API &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://developers.arcgis.com/javascript/jsapi/featurelayer-amd.html" rel="nofollow" target="_blank"&gt;FeatureLayer&lt;/A&gt;&lt;SPAN&gt; instead of a &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://developers.arcgis.com/javascript/jsapi/querytask-amd.html" rel="nofollow" target="_blank"&gt;QueryTask&lt;/A&gt;&lt;SPAN&gt;, it would still probably be helpful for you to check out &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://developers.arcgis.com/javascript/jssamples/fl_zoomgrid.html" rel="nofollow" target="_blank"&gt;this sample&lt;/A&gt;&lt;SPAN&gt;, because what we end up supplying to the dataGrid is ultimately the same.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jun 2014 16:25:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/how-to-use-the-amp-amp-amp-quot-show-find-task/m-p/702216#M65357</guid>
      <dc:creator>JohnGravois</dc:creator>
      <dc:date>2014-06-10T16:25:20Z</dc:date>
    </item>
  </channel>
</rss>

