<?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 task that returns intersecting layers? in Web AppBuilder Custom Widgets Questions</title>
    <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766608#M1229</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I assume the "show pop up for found feature" is interfering?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 15 Apr 2016 13:45:06 GMT</pubDate>
    <dc:creator>LeoLadefian4</dc:creator>
    <dc:date>2016-04-15T13:45:06Z</dc:date>
    <item>
      <title>Search task that returns intersecting layers?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766603#M1224</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; font-size: 14px;"&gt;I'm looking for a search feature that allows you to search for an address (point, polygon) and the return results would return any intersecting layers.&amp;nbsp; Anything like that out there?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Apr 2016 15:02:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766603#M1224</guid>
      <dc:creator>LeoLadefian4</dc:creator>
      <dc:date>2016-04-14T15:02:43Z</dc:date>
    </item>
    <item>
      <title>Re: Search task that returns intersecting layers?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766604#M1225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Leo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; There is no widget out there that I am aware of that does that. But it would be pretty simple to bind the otb Search widget result to launch the Identify widget.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Apr 2016 16:12:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766604#M1225</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-04-14T16:12:56Z</dc:date>
    </item>
    <item>
      <title>Re: Search task that returns intersecting layers?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766605#M1226</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can the onboard Search widget be modified to execute a popup based on the search result as well?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Apr 2016 18:40:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766605#M1226</guid>
      <dc:creator>LeoLadefian4</dc:creator>
      <dc:date>2016-04-14T18:40:07Z</dc:date>
    </item>
    <item>
      <title>Re: Search task that returns intersecting layers?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766606#M1227</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Leo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Sure just edit the Widget.js _onSelectResult function (lines 29 to 34):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;_onSelectResult: function(e) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var result = e.result;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; console.info(result);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (!(result &amp;amp;&amp;amp; result.name)) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var dataSourceIndex = e.sourceIndex;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var sourceResults = this.searchResults[dataSourceIndex];
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var dataIndex = 0;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for (var i = 0, len = sourceResults.length; i &amp;lt; len; i++) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (jimuUtils.isEqual(sourceResults&lt;I&gt;, result)) {&lt;/I&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dataIndex = i;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; break;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; query('li', this.searchResultsNode)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .forEach(lang.hitch(this, function(li) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; html.removeClass(li, 'result-item-selected');
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var title = html.getAttr(li, 'title');
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var dIdx = html.getAttr(li, 'data-index');
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var dsIndex = html.getAttr(li, 'data-source-index');

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (title === result.name &amp;amp;&amp;amp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dIdx === dataIndex.toString() &amp;amp;&amp;amp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dsIndex === dataSourceIndex.toString()) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; html.addClass(li, 'result-item-selected');
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }));
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Once we have the "mapPoint" object we convert it to a "screenPoint" object
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; setTimeout(lang.hitch(this, function(){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var mpPt = result.feature.geometry;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var scrPt = this.map.toScreen(mpPt);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.map.emit("click", { bubbles: true, cancelable: true, screenPoint: scrPt, mapPoint: mpPt });
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }), 500);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; },&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 08:31:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766606#M1227</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-12T08:31:49Z</dc:date>
    </item>
    <item>
      <title>Re: Search task that returns intersecting layers?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766607#M1228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Cool, that's pretty slick. I do have some feature layers in the search box as well, whenever i use those to search it seems to cancel out the popup.&amp;nbsp; Anyway to isolate those searches?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Apr 2016 13:43:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766607#M1228</guid>
      <dc:creator>LeoLadefian4</dc:creator>
      <dc:date>2016-04-15T13:43:22Z</dc:date>
    </item>
    <item>
      <title>Re: Search task that returns intersecting layers?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766608#M1229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I assume the "show pop up for found feature" is interfering?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Apr 2016 13:45:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766608#M1229</guid>
      <dc:creator>LeoLadefian4</dc:creator>
      <dc:date>2016-04-15T13:45:06Z</dc:date>
    </item>
    <item>
      <title>Re: Search task that returns intersecting layers?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766609#M1230</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Leo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Correct, I turned off "&lt;SPAN style="color: #3d3d3d; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; font-size: 14px;"&gt;show pop up for found feature" when testing this.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Apr 2016 13:48:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766609#M1230</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-04-15T13:48:07Z</dc:date>
    </item>
    <item>
      <title>Re: Search task that returns intersecting layers?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766610#M1231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;did you happen to try it with a feature or dynamic layer in the search box?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Apr 2016 14:21:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766610#M1231</guid>
      <dc:creator>LeoLadefian4</dc:creator>
      <dc:date>2016-04-15T14:21:19Z</dc:date>
    </item>
    <item>
      <title>Re: Search task that returns intersecting layers?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766611#M1232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Leo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; I did not.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Apr 2016 15:02:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766611#M1232</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-04-15T15:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: Search task that returns intersecting layers?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766612#M1233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;do you happen to have a quick example of that?&lt;/P&gt;&lt;P&gt;thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Apr 2016 14:15:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766612#M1233</guid>
      <dc:creator>LeoLadefian4</dc:creator>
      <dc:date>2016-04-18T14:15:33Z</dc:date>
    </item>
    <item>
      <title>Re: Search task that returns intersecting layers?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766613#M1234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Leo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; So I added a FeatureLayer from my web map to the Search widgets sources and it worked fine for me (it showed the features popup).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Apr 2016 15:37:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766613#M1234</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-04-18T15:37:51Z</dc:date>
    </item>
    <item>
      <title>Re: Search task that returns intersecting layers?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766614#M1235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Gotcha, It doesnt seem to work with me for some reason.&amp;nbsp; I'm conducting a search using a feature layer (popup turned off) and the popup seems to come up and close itself out really quickly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check it out here if you have a second:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;search parcel ID : 15 175 04 013 in the search box&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://gis.atlantaga.gov/dpcdviewertest/" title="http://gis.atlantaga.gov/dpcdviewertest/"&gt;ArcGIS Web Application&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Apr 2016 18:05:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766614#M1235</guid>
      <dc:creator>LeoLadefian4</dc:creator>
      <dc:date>2016-04-20T18:05:32Z</dc:date>
    </item>
    <item>
      <title>Re: Search task that returns intersecting layers?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766615#M1236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Leo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; When looking a the Network tab in Chrome dev tools you have some issue with the query that is being submitted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: Consolas, 'Lucida Console', monospace; font-size: 12px;"&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=http%3A%2F%2Fgis.atlantaga.gov%2Fdpcd%2Frest%2Fservices%2FLand%2FParcelLayer%2FMapServer%2F0%2Fquery%3Ff%3Djson%26where%3DUPPER%28PIN%29%2520LIKE%2520%2527%252515%2520175%252004%2520013%2525%2527%26returnGeometry%3Dtrue%26spatialRel%3DesriSpatialRelIntersects%26maxAllowableOffset%3D1%26outFields%3D*%26outSR%3D102100" rel="nofollow" target="_blank"&gt;http://gis.atlantaga.gov/dpcd/rest/services/Land/ParcelLayer/MapServer/0/query?f=json&amp;amp;where=UPPER(PIN)%20LIKE%20%27%2515%20175%2004%20013%25%27&amp;amp;returnGeometry=true&amp;amp;spatialRel=esriSpatialRelIntersects&amp;amp;maxAllowableOffset=1&amp;amp;outFields=*&amp;amp;outSR=102100&lt;/A&gt;​&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: Consolas, 'Lucida Console', monospace; font-size: 12px;"&gt;It is failing quite often! You need to look at your ArcGIS Server logs and see what the services issue is.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Apr 2016 18:20:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766615#M1236</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-04-20T18:20:47Z</dc:date>
    </item>
    <item>
      <title>Re: Search task that returns intersecting layers?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766616#M1237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Robert, I've been struggling with that service for a while trying to figure out the issue.&amp;nbsp; I've republished it several times.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Apr 2016 18:41:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766616#M1237</guid>
      <dc:creator>LeoLadefian4</dc:creator>
      <dc:date>2016-04-20T18:41:05Z</dc:date>
    </item>
    <item>
      <title>Re: Search task that returns intersecting layers?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766617#M1238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Leo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; If you have the server resources then you can up the minimum and maximum instances for this service and make sure you have indexed all the fields that will be searched.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Apr 2016 18:48:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766617#M1238</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-04-20T18:48:07Z</dc:date>
    </item>
    <item>
      <title>Re: Search task that returns intersecting layers?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766618#M1239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the tip, I don't believe I've used indexing yet, is it a publishing tool?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Apr 2016 18:53:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766618#M1239</guid>
      <dc:creator>LeoLadefian4</dc:creator>
      <dc:date>2016-04-20T18:53:18Z</dc:date>
    </item>
    <item>
      <title>Re: Search task that returns intersecting layers?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766619#M1240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="http://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/add-attribute-index.htm" title="http://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/add-attribute-index.htm"&gt;Add Attribute Index—Help | ArcGIS for Desktop&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Apr 2016 19:07:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766619#M1240</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-04-20T19:07:06Z</dc:date>
    </item>
    <item>
      <title>Re: Search task that returns intersecting layers?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766620#M1241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, I fixed the service error, indexed the fields (they are in a geodatabase) still can't get the popup on a feature service with the return popup turned off.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried parcel address search&lt;/P&gt;&lt;P&gt;68 mitchell st&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using local layer if that would have any effect&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://gis.atlantaga.gov/dpcdviewertest/" title="http://gis.atlantaga.gov/dpcdviewertest/"&gt;ArcGIS Web Application&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Apr 2016 20:55:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766620#M1241</guid>
      <dc:creator>LeoLadefian4</dc:creator>
      <dc:date>2016-04-20T20:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: Search task that returns intersecting layers?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766621#M1242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Leo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Looking at the web console there are several more error occurring. I would test this out on a new app that only has the suggested code change and the search setup for just one layer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Apr 2016 02:13:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766621#M1242</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-04-21T02:13:27Z</dc:date>
    </item>
    <item>
      <title>Re: Search task that returns intersecting layers?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766622#M1243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert, I finally was able to get this working, however when testing on a mobile device it seems the popup won't complete on either a search or a click.&amp;nbsp; Do you think it's related to the Popup panel widget or the code change.&amp;nbsp; Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gis.atlantaga.gov/dpcdviewer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Jun 2016 13:58:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/search-task-that-returns-intersecting-layers/m-p/766622#M1243</guid>
      <dc:creator>LeoLadefian5</dc:creator>
      <dc:date>2016-06-06T13:58:44Z</dc:date>
    </item>
  </channel>
</rss>

