<?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: Multiple Search Source not firing in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/multiple-search-source-not-firing/m-p/401847#M36981</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Right - not geocoding, searching for an existing address then leaning on the ESRI geocoder for anything not in our file...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope that 10.3 stipulation isn't the hangup... we have no plans to upgrade any time soon...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 Oct 2015 21:05:05 GMT</pubDate>
    <dc:creator>MatthewBaker2</dc:creator>
    <dc:date>2015-10-29T21:05:05Z</dc:date>
    <item>
      <title>Multiple Search Source not firing</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/multiple-search-source-not-firing/m-p/401843#M36977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;All, I'm trying to get the &lt;A href="https://developers.arcgis.com/javascript/jssamples/search_multiplesources.html" title="https://developers.arcgis.com/javascript/jssamples/search_multiplesources.html" rel="nofollow noopener noreferrer" target="_blank"&gt;Search multiple sources | ArcGIS API for JavaScript&lt;/A&gt;&amp;nbsp; sample to work, not sure why when I choose my search source, nothing happens..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- my search source is a point feature layer on an external server:&lt;/P&gt;&lt;P&gt;&lt;A href="https://gisprod.dpsk12.org/arcgis/rest/services/address_master/FeatureServer/0" title="https://gisprod.dpsk12.org/arcgis/rest/services/address_master/FeatureServer/0" rel="nofollow noopener noreferrer" target="_blank"&gt;https://gisprod.dpsk12.org/arcgis/rest/services/address_master/FeatureServer/0&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My code looks like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;SPAN&gt;sources.push({featureLayer: new FeatureLayer("&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fgisprod.dpsk12.org%2Farcgis%2Frest%2Fservices%2Faddress_master%2FFeatureServer%2F0" target="_blank"&gt;https://gisprod.dpsk12.org/arcgis/rest/services/address_master/FeatureServer/0&lt;/A&gt;&lt;SPAN&gt;"),&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; searchFields: ["ADDRESS"],
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; displayField: "ADDRESS",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; exactMatch: false,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; name: "DPS Address",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; placeholder: "123 Smith St",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; maxResults: 6,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; maxSuggestions: 6,

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Create an InfoTemplate and include three fields
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; infoTemplate: new InfoTemplate("Address: ${ADDRESS}"),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; enableSuggestions: true,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; minCharacters: 0
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(I have also attached the html file I'm working on.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which looks good to me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when I use *just* my source, or use *all sources*, no network traffic is generated for my source when input text is entered - but I can see the traffic generated for the other sources (ESRI World Geocoder and Congressional Districts) I've left in the app.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only thing I can figure is I haven't added feature templates, but hoping that isn't required...?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 18:19:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/multiple-search-source-not-firing/m-p/401843#M36977</guid>
      <dc:creator>MatthewBaker2</dc:creator>
      <dc:date>2021-12-11T18:19:33Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Search Source not firing</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/multiple-search-source-not-firing/m-p/401844#M36978</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Matthew, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got it to work with your code. I searched and found &lt;SPAN style="color: #333333; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; font-size: 12px; background-color: #f7f7f7;"&gt;19951 E 59th Dr&lt;/SPAN&gt; using only your service.&amp;nbsp; I could not get your search to work with ALL selected though. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2015 20:48:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/multiple-search-source-not-firing/m-p/401844#M36978</guid>
      <dc:creator>RickeyFight</dc:creator>
      <dc:date>2015-10-29T20:48:28Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Search Source not firing</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/multiple-search-source-not-firing/m-p/401845#M36979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you're searching on attributes, as opposed to geocoding, the service has to be authored in version 10.3.&amp;nbsp; It looks to me like you're searching in the data for an address, but not necessarily geocoding?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2015 20:51:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/multiple-search-source-not-firing/m-p/401845#M36979</guid>
      <dc:creator>TracySchloss</dc:creator>
      <dc:date>2015-10-29T20:51:25Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Search Source not firing</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/multiple-search-source-not-firing/m-p/401846#M36980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Really? I can't get it to fire at all...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2015 21:04:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/multiple-search-source-not-firing/m-p/401846#M36980</guid>
      <dc:creator>MatthewBaker2</dc:creator>
      <dc:date>2015-10-29T21:04:04Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Search Source not firing</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/multiple-search-source-not-firing/m-p/401847#M36981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Right - not geocoding, searching for an existing address then leaning on the ESRI geocoder for anything not in our file...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope that 10.3 stipulation isn't the hangup... we have no plans to upgrade any time soon...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2015 21:05:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/multiple-search-source-not-firing/m-p/401847#M36981</guid>
      <dc:creator>MatthewBaker2</dc:creator>
      <dc:date>2015-10-29T21:05:05Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Search Source not firing</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/multiple-search-source-not-firing/m-p/401848#M36982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try :&lt;A href="http://jsfiddle.net/Fiter/69p9wcu9/" title="http://jsfiddle.net/Fiter/69p9wcu9/"&gt;Edit fiddle - JSFiddle&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did not change your code at all. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2015 21:08:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/multiple-search-source-not-firing/m-p/401848#M36982</guid>
      <dc:creator>RickeyFight</dc:creator>
      <dc:date>2015-10-29T21:08:46Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Search Source not firing</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/multiple-search-source-not-firing/m-p/401849#M36983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;nbsp; It's not real clear in the documentation, but it does tell you in the API help for Search that it requires 10.3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #4d4d4d; font-family: 'Lucida Grande', 'Segoe UI', Arial, sans-serif;"&gt;Suggestions are available if working with a 10.3 geocoding service that has &lt;/SPAN&gt;&lt;CODE style="font-family: Consolas, 'Andale Mono', 'Lucida Console', Monaco, 'Courier New', Courier, monospace; color: #4d4d4d; background-position: initial;"&gt;suggest&lt;/CODE&gt;&lt;SPAN style="color: #4d4d4d; font-family: 'Lucida Grande', 'Segoe UI', Arial, sans-serif;"&gt; capability loaded or a 10.3 feature layer that supports pagination, i.e. &lt;/SPAN&gt;&lt;CODE style="font-family: Consolas, 'Andale Mono', 'Lucida Console', Monaco, 'Courier New', Courier, monospace; color: #4d4d4d; background-position: initial;"&gt;supportsPagination = true&lt;/CODE&gt;&lt;SPAN style="color: #4d4d4d; font-family: 'Lucida Grande', 'Segoe UI', Arial, sans-serif;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #4d4d4d; font-family: 'Lucida Grande', 'Segoe UI', Arial, sans-serif;"&gt;It seems like when I looked into this, 'supportsPagination' is only available starting at 10.3 and not something you can create in the earlier versions.&amp;nbsp;&amp;nbsp; I'm not crazy about having to upgrade either, but this is the sort of functionality that makes me want to do it sooner rather than later.&amp;nbsp; Thankfully the upgrade process isn't quite as painful as it used to be. &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2015 21:09:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/multiple-search-source-not-firing/m-p/401849#M36983</guid>
      <dc:creator>TracySchloss</dc:creator>
      <dc:date>2015-10-29T21:09:40Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Search Source not firing</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/multiple-search-source-not-firing/m-p/401850#M36984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'll have to roll with that for now... thank you!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Nov 2015 21:55:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/multiple-search-source-not-firing/m-p/401850#M36984</guid>
      <dc:creator>MatthewBaker2</dc:creator>
      <dc:date>2015-11-17T21:55:38Z</dc:date>
    </item>
  </channel>
</rss>

