<?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: Search multiple sources - Format using infoTemplate for More Search Results in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/search-multiple-sources-format-using-infotemplate/m-p/20406#M1832</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I also noticed the bad info window with the searchTheme, searchMoreResults junk in it as shown in the 2nd screenshot above when limiting the outfields to certain fields, but setting the infoTemplate to everything.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, this shows a bad info window;&lt;/P&gt;&lt;P&gt;outFields: ["PARCELID","WARD"],&lt;/P&gt;&lt;P&gt;infoTemplate: new esri.InfoTemplate("Search Result", "${*}"),&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="bad_infoWindow.gif" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/194652_bad_infoWindow.gif" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Setting like this works, but has no "Show more results"&lt;/P&gt;&lt;P&gt;outFields: ["*"],&lt;/P&gt;&lt;P&gt;infoTemplate: new esri.InfoTemplate("Search Result", "${*}"),&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Apr 2016 19:26:03 GMT</pubDate>
    <dc:creator>SimonFisher</dc:creator>
    <dc:date>2016-04-12T19:26:03Z</dc:date>
    <item>
      <title>Search multiple sources - Format using infoTemplate for More Search Results</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/search-multiple-sources-format-using-infotemplate/m-p/20398#M1824</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;While using the &lt;STRONG&gt;Search Multiple Sources&lt;/STRONG&gt; widget provided in the ArcGIS API for JavaScript Latest Samples&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this widget we have an observation on the search results return using the infoTemplate().&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where ever we use the sources as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;sources.push({
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; featureLayer: new FeatureLayer("&lt;A href="http://services.arcgis.com/V6ZHFr6zdgNZuVG0/arcgis/rest/services/CongressionalDistricts/FeatureServer/0" rel="nofollow noopener noreferrer" target="_blank"&gt;http://services.arcgis.com/V6ZHFr6zdgNZuVG0/arcgis/rest/services/CongressionalDistricts/FeatureServer/0&lt;/A&gt;"),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; searchFields: ["DISTRICTID"],
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; displayField: "DISTRICTID",
&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: ["DISTRICTID", "NAME", "PARTY"],
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; name: "Congressional Districts",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; placeholder: "3708",
&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("Congressional District", "District ID: ${DISTRICTID}&amp;lt;/br&amp;gt;Name: ${NAME}&amp;lt;/br&amp;gt;Party Affiliation: ${PARTY}"),
&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;In the Line #12&amp;nbsp; we could see the info template has been configured.&lt;/P&gt;&lt;P&gt;and this going to return us the results in the below format:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Infotempalte-Default.jpg" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/114583_Infotempalte-Default.jpg" style="width: 620px; height: 467px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and when we customize the Info template as below as&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sources.push({
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; featureLayer: new FeatureLayer("&lt;A href="http://services.arcgis.com/V6ZHFr6zdgNZuVG0/arcgis/rest/services/CongressionalDistricts/FeatureServer/0" rel="nofollow noopener noreferrer" target="_blank"&gt;http://services.arcgis.com/V6ZHFr6zdgNZuVG0/arcgis/rest/services/CongressionalDistricts/FeatureServer/0&lt;/A&gt;"),
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; searchFields: ["DISTRICTID"],
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; displayField: "DISTRICTID",
&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: ["DISTRICTID", "NAME", "PARTY"],
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; name: "Congressional Districts",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; placeholder: "3708",
&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("", ""),
&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;In the Line #12&amp;nbsp; we could see the info template has been configured to default which are null.&lt;/P&gt;&lt;P&gt;and this going to return us the results in the below format:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Infotempalte-null.jpg" class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/114671_Infotempalte-null.jpg" style="width: 620px; height: 672px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here my query is can we &lt;STRONG&gt;customize the info Template&lt;/STRONG&gt; to show the certain attributes and &lt;STRONG&gt;Show more results&lt;/STRONG&gt; as like in the image#2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I am expecting the results to be in the below format &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid rgb(198, 198, 198); width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: left; background-color: #f2f2f2; color: #505050; padding: 6px;" valign="middle"&gt;&lt;STRONG&gt;DistrictID&lt;BR /&gt;&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: left; background-color: #f2f2f2; color: #505050; padding: 6px;" valign="middle"&gt;&lt;STRONG&gt;Name&lt;BR /&gt;&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: left; background-color: #f2f2f2; color: #505050; padding: 6px;" valign="middle"&gt;&lt;STRONG&gt;Party&lt;BR /&gt;&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 6px;"&gt;&lt;SPAN style="text-decoration: underline; color: #3334ca;"&gt;&lt;STRONG&gt;3705&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD style="padding: 6px;"&gt;Virginia Fox&lt;/TD&gt;&lt;TD style="padding: 6px;"&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;republican&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 6px;"&gt;&lt;SPAN style="text-decoration: underline; color: #3334ca;"&gt;&lt;STRONG&gt;3706&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD style="padding: 6px;"&gt;xxxxx&lt;/TD&gt;&lt;TD style="padding: 6px;"&gt;xxxxx&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where when user clicks on the &lt;STRONG style="color: #505050;"&gt;DistrictID &lt;/STRONG&gt;it navigate to the respective district.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can some one please help in getting this &lt;STRONG&gt;designed&lt;/STRONG&gt; ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did some one have seen this before ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/3101" target="_blank"&gt;Robert Scheitlin, GISP&lt;/A&gt;​&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/108813" target="_blank"&gt;TAPAS DAS&lt;/A&gt;​&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/16374" target="_blank"&gt;Stan McShinsky&lt;/A&gt;​&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 20:48:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/search-multiple-sources-format-using-infotemplate/m-p/20398#M1824</guid>
      <dc:creator>RavitejaViswanadha1</dc:creator>
      <dc:date>2021-12-10T20:48:31Z</dc:date>
    </item>
    <item>
      <title>Re: Search multiple sources - Format using infoTemplate for More Search Results</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/search-multiple-sources-format-using-infotemplate/m-p/20399#M1825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes, this is possible if you modify the default infoTemplate to display your custom attributes as well as have the more results HTML.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;default:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;infoTemplate: new InfoTemplate(i18n.widgets.Search.main.searchResult, "&amp;lt;div class=\"${searchTheme}\"&amp;gt;&amp;lt;div id=\"${searchMoreResultsId}\" class=\"${searchMoreResults}\"&amp;gt;&amp;lt;div class=\"${searchMoreResultsItem}\"&amp;gt;${searchResult}&amp;lt;/div&amp;gt;&amp;lt;div&amp;gt;${searchMoreResultsHtml}&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;")&lt;/PRE&gt;&lt;P&gt;Modified example:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;var tpl = "";
tpl += "&amp;lt;div class=\"${searchTheme}\"&amp;gt;&amp;lt;div id=\"${searchMoreResultsId}\" class=\"${searchMoreResults}\"&amp;gt;&amp;lt;div class=\"${searchMoreResultsItem}\"&amp;gt;";


// table
tpl += "&amp;lt;table&amp;gt;";
tpl += "&amp;lt;thead&amp;gt;";
tpl += "&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;&amp;lt;strong&amp;gt;DistrictID&amp;lt;br /&amp;gt;&amp;lt;/strong&amp;gt;&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;&amp;lt;strong&amp;gt;Name&amp;lt;br /&amp;gt;&amp;lt;/strong&amp;gt;&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;";
tpl += "&amp;lt;strong&amp;gt;Party&amp;lt;br /&amp;gt;&amp;lt;/strong&amp;gt;&amp;lt;/th&amp;gt;&amp;lt;/tr&amp;gt;";
tpl += "&amp;lt;/thead&amp;gt;";
tpl += "&amp;lt;tbody&amp;gt;";
tpl += "&amp;lt;tr&amp;gt;";
tpl += "&amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;${DISTRICTID}&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;";
tpl += "&amp;lt;td&amp;gt;Virginia Fox&amp;lt;/td&amp;gt;";
tpl += "&amp;lt;td&amp;gt;";
tpl += "&amp;lt;p&amp;gt;${PARTY}&amp;lt;/p&amp;gt;";
tpl += "&amp;lt;/td&amp;gt;";
tpl += "&amp;lt;/tr&amp;gt;";
tpl += "&amp;lt;tr&amp;gt;";
tpl += "&amp;lt;td&amp;gt;&amp;lt;strong&amp;gt;3706&amp;lt;/strong&amp;gt;&amp;lt;/td&amp;gt;";
tpl += "&amp;lt;td&amp;gt;xxxxx&amp;lt;/td&amp;gt;";
tpl += "&amp;lt;td&amp;gt;xxxxx&amp;lt;/td&amp;gt;";
tpl += "&amp;lt;/tr&amp;gt;";
tpl += "&amp;lt;/tbody&amp;gt;";
tpl += "&amp;lt;/table&amp;gt;";




tpl += "&amp;lt;/div&amp;gt;&amp;lt;div&amp;gt;${searchMoreResultsHtml}&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;";&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;infoTemplate: new InfoTemplate("My Popup", tpl);&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 20:48:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/search-multiple-sources-format-using-infotemplate/m-p/20399#M1825</guid>
      <dc:creator>MattDriscoll</dc:creator>
      <dc:date>2021-12-10T20:48:33Z</dc:date>
    </item>
    <item>
      <title>Re: Search multiple sources - Format using infoTemplate for More Search Results</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/search-multiple-sources-format-using-infotemplate/m-p/20400#M1826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you @&lt;SPAN class="font-color-meta" style="padding: 0 0 5px; font-size: 1.2em; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #8b8b8b; background-color: #e6e6e6;"&gt;&lt;SPAN class="replyToName" style="font-weight: inherit; font-style: inherit; font-size: 15.6000003814697px; font-family: inherit;"&gt;Matt Driscoll&lt;/SPAN&gt; &lt;/SPAN&gt;. This is helpful.Appreciate your response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here I have another Query that Can we &lt;STRONG&gt;customize&lt;/STRONG&gt; the &lt;SPAN style="color: #0000ff; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px; background-color: #f6f6f6;"&gt;${searchMoreResultsHtml}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As we see that we are showing all the results in tabular format and it gonna duplicate the results as in tabular format and also in the SearchMoreResultsHTML.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 18:20:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/search-multiple-sources-format-using-infotemplate/m-p/20400#M1826</guid>
      <dc:creator>RavitejaViswanadha1</dc:creator>
      <dc:date>2015-07-01T18:20:34Z</dc:date>
    </item>
    <item>
      <title>Re: Search multiple sources - Format using infoTemplate for More Search Results</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/search-multiple-sources-format-using-infotemplate/m-p/20401#M1827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/137513"&gt;Raviteja Viswanadha&lt;/A&gt;​ The more results HTML can't be customized at this time. It just displays the name of the features in a list.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 18:26:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/search-multiple-sources-format-using-infotemplate/m-p/20401#M1827</guid>
      <dc:creator>MattDriscoll</dc:creator>
      <dc:date>2015-07-01T18:26:58Z</dc:date>
    </item>
    <item>
      <title>Re: Search multiple sources - Format using infoTemplate for More Search Results</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/search-multiple-sources-format-using-infotemplate/m-p/20402#M1828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Matt. This is helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 18:28:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/search-multiple-sources-format-using-infotemplate/m-p/20402#M1828</guid>
      <dc:creator>RavitejaViswanadha1</dc:creator>
      <dc:date>2015-07-01T18:28:19Z</dc:date>
    </item>
    <item>
      <title>Re: Search multiple sources - Format using infoTemplate for More Search Results</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/search-multiple-sources-format-using-infotemplate/m-p/20403#M1829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If searchMoreResultsHtml is showing duplicates, Than you can completely remove if by removing the line &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tpl +=&lt;SPAN class="string"&gt;&amp;lt;/div&amp;gt;&amp;lt;div&amp;gt;${searchMoreResultsHtml}&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="string"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="string"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 19:03:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/search-multiple-sources-format-using-infotemplate/m-p/20403#M1829</guid>
      <dc:creator>thejuskambi</dc:creator>
      <dc:date>2015-07-01T19:03:13Z</dc:date>
    </item>
    <item>
      <title>Re: Search multiple sources - Format using infoTemplate for More Search Results</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/search-multiple-sources-format-using-infotemplate/m-p/20404#M1830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is this also possible when using a PopupTemplate instead of an InfoTemplate? I want to do this but also display a photo.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jul 2015 15:36:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/search-multiple-sources-format-using-infotemplate/m-p/20404#M1830</guid>
      <dc:creator>PaigeKercher</dc:creator>
      <dc:date>2015-07-30T15:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: Search multiple sources - Format using infoTemplate for More Search Results</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/search-multiple-sources-format-using-infotemplate/m-p/20405#M1831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes. that should work&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jul 2015 15:50:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/search-multiple-sources-format-using-infotemplate/m-p/20405#M1831</guid>
      <dc:creator>MattDriscoll</dc:creator>
      <dc:date>2015-07-30T15:50:13Z</dc:date>
    </item>
    <item>
      <title>Re: Search multiple sources - Format using infoTemplate for More Search Results</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/search-multiple-sources-format-using-infotemplate/m-p/20406#M1832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I also noticed the bad info window with the searchTheme, searchMoreResults junk in it as shown in the 2nd screenshot above when limiting the outfields to certain fields, but setting the infoTemplate to everything.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, this shows a bad info window;&lt;/P&gt;&lt;P&gt;outFields: ["PARCELID","WARD"],&lt;/P&gt;&lt;P&gt;infoTemplate: new esri.InfoTemplate("Search Result", "${*}"),&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="bad_infoWindow.gif" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/194652_bad_infoWindow.gif" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Setting like this works, but has no "Show more results"&lt;/P&gt;&lt;P&gt;outFields: ["*"],&lt;/P&gt;&lt;P&gt;infoTemplate: new esri.InfoTemplate("Search Result", "${*}"),&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2016 19:26:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/search-multiple-sources-format-using-infotemplate/m-p/20406#M1832</guid>
      <dc:creator>SimonFisher</dc:creator>
      <dc:date>2016-04-12T19:26:03Z</dc:date>
    </item>
    <item>
      <title>Re: Search multiple sources - Format using infoTemplate for More Search Results</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/search-multiple-sources-format-using-infotemplate/m-p/20407#M1833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah, since those are just attributes of the search results, it will display like that. If you want to use a custom info template, the default info template looks like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14604933867706856 jive_text_macro" data-renderedposition="60_-446_1332_16" jivemacro_uid="_14604933867706856"&gt;&lt;P&gt;new InfoTemplate(i18n.widgets.Search.main.searchResult, "&amp;lt;div class=\"${searchTheme}\"&amp;gt;&amp;lt;div id=\"${searchMoreResultsId}\" class=\"${searchMoreResults}\"&amp;gt;&amp;lt;div class=\"${searchMoreResultsItem}\"&amp;gt;${searchResult}&amp;lt;/div&amp;gt;&amp;lt;div&amp;gt;${searchMoreResultsHtml}&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;")&lt;/P&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Apr 2016 20:36:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/search-multiple-sources-format-using-infotemplate/m-p/20407#M1833</guid>
      <dc:creator>MattDriscoll</dc:creator>
      <dc:date>2016-04-12T20:36:19Z</dc:date>
    </item>
  </channel>
</rss>

