<?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: Can a selection (via ESRI WAB Search widget) remain visible when popup window is closed? in ArcGIS Web AppBuilder Questions</title>
    <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/can-a-selection-via-esri-wab-search-widget-remain/m-p/1155786#M22008</link>
    <description>&lt;P&gt;I'm trying re-create this action allowing the selected highlight symbology to remain after the pop up is closed in the most recent version of web appbuilder (2.23).&amp;nbsp; The code has been changed to the point that Robert's solution is no longer valid.&amp;nbsp; For example, there is not a 'show, hide' action in the current Widget.js file.&amp;nbsp; I did have it functioning in an older version of web appbuilder (2.4).&lt;/P&gt;&lt;P&gt;Any insight on where this action can now be made? And on a similar topic, how can this symbolgy also remain when typical pop up is closed that was not executed from the Search widget?&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
    <pubDate>Mon, 21 Mar 2022 16:22:22 GMT</pubDate>
    <dc:creator>JasonBerry</dc:creator>
    <dc:date>2022-03-21T16:22:22Z</dc:date>
    <item>
      <title>Can a selection (via ESRI WAB Search widget) remain visible when popup window is closed?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/can-a-selection-via-esri-wab-search-widget-remain/m-p/709803#M18631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have an AGOL popup window configured for my parcels layer that opens with the result(s) from the ESRI Search widget in my Web AppBuilder Developer 2.0 application.&amp;nbsp; When I close the popup I also lose the search result list in the Search widget itself, and I lose the selected item/symbology in my map.&amp;nbsp; Is there a way to close the popup but not lose the list and/or the map symbology/selected feature?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it's of any significance, I also used &lt;A href="https://community.esri.com/migrated-users/42627"&gt;Tyler Dunn&lt;/A&gt;'s suggestion in &lt;A _jive_internal="true" href="https://community.esri.com/message/621996?et=watches.email.thread#comment-621996"&gt;this &lt;/A&gt;thread to make the popup window moveable. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jul 2016 13:13:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/can-a-selection-via-esri-wab-search-widget-remain/m-p/709803#M18631</guid>
      <dc:creator>AdamGebhart</dc:creator>
      <dc:date>2016-07-19T13:13:25Z</dc:date>
    </item>
    <item>
      <title>Re: Can a selection (via ESRI WAB Search widget) remain visible when popup window is closed?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/can-a-selection-via-esri-wab-search-widget-remain/m-p/709804#M18632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Adam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; In the Search widgets Widget.js file you will find this block of code that clears the selected feature when the popup is closed:&lt;/P&gt;&lt;P&gt;comment out line 6:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;this.own(
&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; on(this.map.infoWindow, 'show,hide', lang.hitch(this, function() {
&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; if (this.searchDijit &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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.map.infoWindow.getSelectedFeature() ===
&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; this.searchDijit.highlightGraphic) {
&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; //this.searchDijit.clearGraphics();
&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).removeClass('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;&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; );&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and this block is what hides the result list (line 4):&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;this.own(
&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; on(window.document, 'click', lang.hitch(this, function(e) {
&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; if (!html.isDescendant(e.target, this.searchResultsNode)) {
&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; this._hideResultMenu();
&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; this._resetSelectorPosition('.show-all-results');
&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;&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; );&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have not tested the effects of removing these.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 06:25:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/can-a-selection-via-esri-wab-search-widget-remain/m-p/709804#M18632</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-12T06:25:58Z</dc:date>
    </item>
    <item>
      <title>Re: Can a selection (via ESRI WAB Search widget) remain visible when popup window is closed?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/can-a-selection-via-esri-wab-search-widget-remain/m-p/709805#M18633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As always, thank you Robert.&amp;nbsp; This is exactly what our users have asked for. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've commented out both lines you mentioned and we've had some of our users test it in Firefox, Chrome, Edge and IE.&amp;nbsp; So far, everything appears to be working properly, or we haven't noticed any side effects yet.&amp;nbsp; I'll let you know if we catch anything and will mark the question as answered if we don't see any issues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Again, thank you very much.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jul 2016 19:31:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/can-a-selection-via-esri-wab-search-widget-remain/m-p/709805#M18633</guid>
      <dc:creator>AdamGebhart</dc:creator>
      <dc:date>2016-07-19T19:31:56Z</dc:date>
    </item>
    <item>
      <title>Re: Can a selection (via ESRI WAB Search widget) remain visible when popup window is closed?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/can-a-selection-via-esri-wab-search-widget-remain/m-p/709806#M18634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In addition to this request, is it also possible to hide the popup attribute window so that it does not show&amp;nbsp;when a search is performed. I don't want to disable the popup completely, I just don't want it to show when the search widget selects and zooms to&amp;nbsp;the feature.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Nov 2016 22:21:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/can-a-selection-via-esri-wab-search-widget-remain/m-p/709806#M18634</guid>
      <dc:creator>JoelEdgar</dc:creator>
      <dc:date>2016-11-03T22:21:42Z</dc:date>
    </item>
    <item>
      <title>Re: Can a selection (via ESRI WAB Search widget) remain visible when popup window is closed?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/can-a-selection-via-esri-wab-search-widget-remain/m-p/709807#M18635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Joel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Sure in the Search widgets settings page just un check "&lt;SPAN style="color: #596679; background-color: #ffffff;"&gt;Show pop-up for the found feature or location"&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Nov 2016 01:25:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/can-a-selection-via-esri-wab-search-widget-remain/m-p/709807#M18635</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-11-04T01:25:13Z</dc:date>
    </item>
    <item>
      <title>Re: Can a selection (via ESRI WAB Search widget) remain visible when popup window is closed?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/can-a-selection-via-esri-wab-search-widget-remain/m-p/709808#M18636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Adam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't forget to mark this question as answered by clicking on the "Correct Answer" link on the reply that answered your question.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Nov 2016 16:17:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/can-a-selection-via-esri-wab-search-widget-remain/m-p/709808#M18636</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-11-07T16:17:08Z</dc:date>
    </item>
    <item>
      <title>Re: Can a selection (via ESRI WAB Search widget) remain visible when popup window is closed?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/can-a-selection-via-esri-wab-search-widget-remain/m-p/709809#M18637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Done.&amp;nbsp; Sorry about missing that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Nov 2016 16:22:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/can-a-selection-via-esri-wab-search-widget-remain/m-p/709809#M18637</guid>
      <dc:creator>AdamGebhart</dc:creator>
      <dc:date>2016-11-07T16:22:41Z</dc:date>
    </item>
    <item>
      <title>Re: Can a selection (via ESRI WAB Search widget) remain visible when popup window is closed?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/can-a-selection-via-esri-wab-search-widget-remain/m-p/1155786#M22008</link>
      <description>&lt;P&gt;I'm trying re-create this action allowing the selected highlight symbology to remain after the pop up is closed in the most recent version of web appbuilder (2.23).&amp;nbsp; The code has been changed to the point that Robert's solution is no longer valid.&amp;nbsp; For example, there is not a 'show, hide' action in the current Widget.js file.&amp;nbsp; I did have it functioning in an older version of web appbuilder (2.4).&lt;/P&gt;&lt;P&gt;Any insight on where this action can now be made? And on a similar topic, how can this symbolgy also remain when typical pop up is closed that was not executed from the Search widget?&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2022 16:22:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/can-a-selection-via-esri-wab-search-widget-remain/m-p/1155786#M22008</guid>
      <dc:creator>JasonBerry</dc:creator>
      <dc:date>2022-03-21T16:22:22Z</dc:date>
    </item>
  </channel>
</rss>

