<?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: WAB Near Me Widget in ArcGIS Web AppBuilder Questions</title>
    <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613070#M16217</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I thought i might be on the right track re itemList, &amp;nbsp;thanks I'll get this tested right away&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 Aug 2016 13:13:22 GMT</pubDate>
    <dc:creator>DavidColey</dc:creator>
    <dc:date>2016-08-29T13:13:22Z</dc:date>
    <item>
      <title>WAB Near Me Widget</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613057#M16204</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #3d3d3d;"&gt;Good Afternoon All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #3d3d3d;"&gt;I Have a question about NearMe widge. After, the Near Me Widget reports the list of features within it's buffer distance, I decided to move to another widget, but the buffere and the symbols still floats and I couldn't know how to trurn them off.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #3d3d3d;"&gt;Is it possible to control them on the widget configuratio.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #3d3d3d;"&gt;Any help is appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jul 2016 17:35:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613057#M16204</guid>
      <dc:creator>Fahad_Dalbouh</dc:creator>
      <dc:date>2016-07-21T17:35:13Z</dc:date>
    </item>
    <item>
      <title>Re: WAB Near Me Widget</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613058#M16205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Fathad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are using WAB Developer version than you can add some code to get graphics to hide when the widget is hidden:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;onOpen: function () {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (this._isValidConfig) {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this._onWindowResize();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this._connectMapEventHandler();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(this._highlightGraphicsLayer){&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this._highlightGraphicsLayer.show();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(this._bufferGraphicLayer){&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this._bufferGraphicLayer.show();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; },&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;onClose: function () {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (this._isValidConfig) {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this._disconnectMapEventHandler();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(this._highlightGraphicsLayer){&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this._highlightGraphicsLayer.hide();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(this._bufferGraphicLayer){&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this._bufferGraphicLayer.hide();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; },&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are using the AGOL version then your only option is to click the clear button on the Search dijit inside the NearMe widget UI.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Jul 2016 17:27:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613058#M16205</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-07-25T17:27:50Z</dc:date>
    </item>
    <item>
      <title>Re: WAB Near Me Widget</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613059#M16206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your early response.I'm actually using the AGOL version. I also didn't find the clear button you mention on the Search dijit inside the NearMe widget. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Does ESRI have plans to update this widget with the code you provide in AGOL version?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jul 2016 10:25:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613059#M16206</guid>
      <dc:creator>Fahad_Dalbouh</dc:creator>
      <dc:date>2016-07-26T10:25:27Z</dc:date>
    </item>
    <item>
      <title>Re: WAB Near Me Widget</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613060#M16207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Fadhad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; This is the clear button I was talking about.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="example.jpg" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/213215_example.jpg" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;You should have this in the AGOL Version.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jul 2016 13:21:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613060#M16207</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-07-26T13:21:00Z</dc:date>
    </item>
    <item>
      <title>Re: WAB Near Me Widget</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613061#M16208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello (Robert / Fadhad),&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the AGOL Version - I can clear the results using the X in the search an address or locate on map - however, the X will not clear the graphics/result set on the Map.&amp;nbsp; As a user when I try to work with the original layer (I want to see all available features) I cannot, I can only work with the last results set.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other than adding the code above to a WAB developer version is the AGOL version going to have a work around soon ??&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>Mon, 08 Aug 2016 18:47:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613061#M16208</guid>
      <dc:creator>ElisabethvanderLeeuw</dc:creator>
      <dc:date>2016-08-08T18:47:24Z</dc:date>
    </item>
    <item>
      <title>Re: WAB Near Me Widget</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613062#M16209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Elisabeth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are right, this does not clear the graphics set on the map. I'm not sure if&lt;SPAN style="color: #3d3d3d; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt; &lt;SPAN style="color: #3d3d3d; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;ESRI has planned to &lt;/SPAN&gt;update this widget with the code above in AGOL version. I hope they are going to do that soon.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Aug 2016 10:19:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613062#M16209</guid>
      <dc:creator>FahadDalbouh</dc:creator>
      <dc:date>2016-08-11T10:19:12Z</dc:date>
    </item>
    <item>
      <title>Re: WAB Near Me Widget</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613063#M16210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Robert - where are you adding this code? &amp;nbsp;Clearing the search handles the search point graphic visibility but not the buffer. &amp;nbsp;I can't seem it to clear on either a widget panel close or search clear-&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Aug 2016 16:28:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613063#M16210</guid>
      <dc:creator>DavidColey</dc:creator>
      <dc:date>2016-08-26T16:28:24Z</dc:date>
    </item>
    <item>
      <title>Re: WAB Near Me Widget</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613064#M16211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah nevermind - found it in the widget.js&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Aug 2016 16:38:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613064#M16211</guid>
      <dc:creator>DavidColey</dc:creator>
      <dc:date>2016-08-26T16:38:17Z</dc:date>
    </item>
    <item>
      <title>Re: WAB Near Me Widget</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613065#M16212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Robert et al - fyi&amp;nbsp;in the onClose function I am clearing the bufferGraphicLayer as opposed to hiding:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;this&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;_bufferGraphicLayer&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt; &lt;SPAN class="comment token"&gt;//clearthe buffer on widget close&lt;/SPAN&gt;
 &lt;SPAN class="keyword token"&gt;this&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;_bufferGraphicLayer&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;clear&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;as hiding restors the graphic back in the onOpen&amp;nbsp;bufferGraphicLayer.show method. &amp;nbsp;This way there is nothing to show, which is what I want in my case. &amp;nbsp;It would be nice however if clearing the address search handled clearing the buffer.&lt;/P&gt;&lt;P&gt;David&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 02:13:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613065#M16212</guid>
      <dc:creator>DavidColey</dc:creator>
      <dc:date>2021-12-12T02:13:17Z</dc:date>
    </item>
    <item>
      <title>Re: WAB Near Me Widget</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613066#M16213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;David,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;so just add that to the _clearResults function then.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Aug 2016 17:32:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613066#M16213</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-08-26T17:32:01Z</dc:date>
    </item>
    <item>
      <title>Re: WAB Near Me Widget</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613067#M16214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh yes that works, duh. I'm still seeing some funny visibility behavior on result layers if the location result is cleared while the result is selected. &amp;nbsp;If the setting 'Only draw selected layer results' widget option is enabled, and the result is cleared, then only the &lt;EM&gt;selected&lt;/EM&gt;&amp;nbsp;feature from the layer will draw, not &lt;EM&gt;all&lt;/EM&gt; the features.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At this point, users just have to make sure that they do not clear search results with an active selection or they will no longer be able to see the entire layer unless they do a browser refresh. &amp;nbsp;Here you can see I have 2 schools returned&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" height="353" src="https://community.esri.com/legacyfs/online/217970_pastedImage_3.png" width="509" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if I clear the result, only the 2 schools will show in any subsequent layer list toggle action unless I redo a search. &amp;nbsp;I guess the widget is not releasing the itemlist? &amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Aug 2016 19:05:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613067#M16214</guid>
      <dc:creator>DavidColey</dc:creator>
      <dc:date>2016-08-26T19:05:15Z</dc:date>
    </item>
    <item>
      <title>Re: WAB Near Me Widget</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613068#M16215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;David,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; to fix that you need to add this to the _clearResults function too:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;this&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;_itemListObject &lt;SPAN class="operator token"&gt;&amp;amp;&amp;amp;&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;this&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;_itemListObject&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;_selectedLayer&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&amp;nbsp; &lt;SPAN class="keyword token"&gt;this&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;_itemListObject&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;_resetFilter&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;this&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;_itemListObject&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;_selectedLayer&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;layerIndex&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/people/junshan_liu-esristaff" target="_blank"&gt;junshan_liu-esristaff&lt;/A&gt;‌ The Near Me widget seems to have things that are not working properly or just need some more work.&lt;/P&gt;&lt;P&gt;I think the addition of a clear link/button is really needed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 02:13:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613068#M16215</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-12T02:13:19Z</dc:date>
    </item>
    <item>
      <title>Re: WAB Near Me Widget</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613069#M16216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Lindsay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you help have a look?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Aug 2016 02:21:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613069#M16216</guid>
      <dc:creator>JunshanLiu</dc:creator>
      <dc:date>2016-08-29T02:21:52Z</dc:date>
    </item>
    <item>
      <title>Re: WAB Near Me Widget</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613070#M16217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I thought i might be on the right track re itemList, &amp;nbsp;thanks I'll get this tested right away&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Aug 2016 13:13:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613070#M16217</guid>
      <dc:creator>DavidColey</dc:creator>
      <dc:date>2016-08-29T13:13:22Z</dc:date>
    </item>
    <item>
      <title>Re: WAB Near Me Widget</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613071#M16218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes this works as expected, thanks Robert. &amp;nbsp;If I'm following the logic correctly, this reads if the the _itemListObject and the _itemListObject selected layers are not null (not an empty array) then reset the object back to null for every layer at a given index . . .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Aug 2016 15:26:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613071#M16218</guid>
      <dc:creator>DavidColey</dc:creator>
      <dc:date>2016-08-29T15:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: WAB Near Me Widget</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613072#M16219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;David,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;Ultimately what it does is it removed the layer definition that was applied to the layer when you use the widgets "Only the selected layer in the search results will draw on map"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Aug 2016 15:30:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613072#M16219</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-08-29T15:30:30Z</dc:date>
    </item>
    <item>
      <title>Re: WAB Near Me Widget</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613073#M16220</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, this is an issue in Near Me and we have fixed it. We have added the ability to clear the widget results\graphics in the next release by 1) using the "X" button in the Search dialog and 2) clearning the results\graphics when the widget is closed.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This fix will be available in the Web AppBuilder for ArcGIS in the September 2016 Release and it will be available in the next version of Web AppBuilder (Developer Edition) 2.2 .&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Aug 2016 16:21:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613073#M16220</guid>
      <dc:creator>LindsayThomas</dc:creator>
      <dc:date>2016-08-29T16:21:52Z</dc:date>
    </item>
    <item>
      <title>Re: WAB Near Me Widget</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613074#M16221</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok thanks for that - helps my understanding. &amp;nbsp;I believe I will have to add the snippet the the onClose event for the panel as well in order to handle the interactive cases&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Aug 2016 16:22:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613074#M16221</guid>
      <dc:creator>DavidColey</dc:creator>
      <dc:date>2016-08-29T16:22:16Z</dc:date>
    </item>
    <item>
      <title>Re: WAB Near Me Widget</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613075#M16222</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Elisabeth,&amp;nbsp;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;Yes, this is an issue in Near Me and we have fixed it. We have added the ability to clear the widget results\graphics in the next release by 1) using the "X" button in the Search dialog and 2) clearning the results\graphics when the widget is closed.&amp;nbsp;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;This fix will be available in the Web AppBuilder for ArcGIS in the September 2016 Release and it will be available in the next version of Web AppBuilder (Developer Edition) 2.2 .&amp;nbsp;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;-Lindsay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Aug 2016 16:22:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613075#M16222</guid>
      <dc:creator>LindsayThomas</dc:creator>
      <dc:date>2016-08-29T16:22:51Z</dc:date>
    </item>
    <item>
      <title>Re: WAB Near Me Widget</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613076#M16223</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Lindsay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;What do you think about adding a simple clear link to the widget that way you can clear the buffer and layers definition query without having to close the widget?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Aug 2016 16:25:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/wab-near-me-widget/m-p/613076#M16223</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-08-29T16:25:41Z</dc:date>
    </item>
  </channel>
</rss>

