<?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: Turning off eSearch Widget when opening another widget in ArcGIS Web AppBuilder Questions</title>
    <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/turning-off-esearch-widget-when-opening-another/m-p/62176#M1790</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Sounds like you have messed up your widgets require array. Can you Post your define section and the following function list?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Oct 2018 19:39:22 GMT</pubDate>
    <dc:creator>RobertScheitlin__GISP</dc:creator>
    <dc:date>2018-10-17T19:39:22Z</dc:date>
    <item>
      <title>Turning off eSearch Widget when opening another widget</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/turning-off-esearch-widget-when-opening-another/m-p/62167#M1781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert,&lt;/P&gt;&lt;P&gt;I have the eSearch widget configured to open&amp;nbsp;at the start. Now I need to&amp;nbsp;automatically close the widget when I open another widget called Sewer Capacity Calculator. What piece of code is needed and where would it go?&lt;/P&gt;&lt;P&gt;Also, at the same time I would like to turn off the Ortho image as the widget is opened, same thing how do I do this?&lt;/P&gt;&lt;P&gt;Please see attached image.&lt;/P&gt;&lt;P&gt;Thank You!&lt;/P&gt;&lt;P&gt;Rich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2018 13:00:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/turning-off-esearch-widget-when-opening-another/m-p/62167#M1781</guid>
      <dc:creator>RichBell</dc:creator>
      <dc:date>2018-10-17T13:00:35Z</dc:date>
    </item>
    <item>
      <title>Re: Turning off eSearch Widget when opening another widget</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/turning-off-esearch-widget-when-opening-another/m-p/62168#M1782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rich,&lt;/P&gt;&lt;P&gt;You would need to add this to the sewer widget onOpen function&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="comment token"&gt;//require&lt;/SPAN&gt;
&lt;SPAN class="string token"&gt;'jimu/PanelManager'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&amp;nbsp; 
PanelManager&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;&amp;nbsp; 

&lt;SPAN class="comment token"&gt;//code&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; pm &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; PanelManager&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;getInstance&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
pm&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;closePanel&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;appConfig&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;widgetOnScreen&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;widgets&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;4&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="comment token"&gt;//close the 5th widget in the config.json inside the widgetOnScreen object&amp;nbsp; &lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;//or&amp;nbsp; &lt;/SPAN&gt;
pm&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;closePanel&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;pm&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;activePanel&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;&lt;SPAN class="comment token"&gt;//close the active panel&amp;nbsp; ‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍&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;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&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;For turning a layer on or off see this thread:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/thread/183992-turn-on-layers-on-widget-start" target="_blank"&gt;https://community.esri.com/thread/183992-turn-on-layers-on-widget-start&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 22:22:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/turning-off-esearch-widget-when-opening-another/m-p/62168#M1782</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-10T22:22:08Z</dc:date>
    </item>
    <item>
      <title>Re: Turning off eSearch Widget when opening another widget</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/turning-off-esearch-widget-when-opening-another/m-p/62169#M1783</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The eSearch widget is in a WidgetPool and is not a WidgetOnSreen.&lt;/P&gt;&lt;P&gt;Ok, I tried fooling with the code but either way I get an "setState" error.&lt;/P&gt;&lt;P&gt;This is my attempt putting in the code you gave me.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #7a7a43; font-family: Courier New; font-size: xx-small;"&gt;onOpen&lt;/SPAN&gt;&lt;SPAN style="font-family: Courier New; font-size: xx-small;"&gt;: &lt;/SPAN&gt;&lt;STRONG style="color: #000080; font-size: xx-small; font-family: Courier New;"&gt;function &lt;/STRONG&gt;&lt;SPAN style="font-family: Courier New; font-size: xx-small;"&gt;() {&lt;BR /&gt; &lt;/SPAN&gt;&lt;EM style="color: #808080; font-size: xx-small; font-family: Courier New;"&gt;//BELL Add to close other widgets at start up&lt;BR /&gt;&lt;/EM&gt;&lt;STRONG style="color: #000080; font-size: xx-small; font-family: Courier New;"&gt;var &lt;/STRONG&gt;&lt;SPAN style="color: #458383; font-family: Courier New; font-size: xx-small;"&gt;pm &lt;/SPAN&gt;&lt;SPAN style="font-family: Courier New; font-size: xx-small;"&gt;= PanelManager.&lt;/SPAN&gt;&lt;SPAN style="color: #7a7a43; font-family: Courier New; font-size: xx-small;"&gt;getInstance&lt;/SPAN&gt;&lt;SPAN style="font-family: Courier New; font-size: xx-small;"&gt;();&lt;BR /&gt; &lt;/SPAN&gt;&lt;EM style="color: #808080; font-size: xx-small; font-family: Courier New;"&gt;//pm.closePanel(this.appConfig.widgetOnScreen.widgets[4]);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #808080; font-size: xx-small; font-family: Courier New;"&gt; &lt;/EM&gt;&lt;SPAN style="color: #458383; font-family: Courier New; font-size: xx-small;"&gt;pm&lt;/SPAN&gt;&lt;SPAN style="font-family: Courier New; font-size: xx-small;"&gt;.&lt;/SPAN&gt;&lt;STRONG style="color: #660e7a; font-size: xx-small; font-family: Courier New;"&gt;closePanel&lt;/STRONG&gt;&lt;SPAN style="font-family: Courier New; font-size: xx-small;"&gt;(&lt;/SPAN&gt;&lt;STRONG style="color: #000080; font-size: xx-small; font-family: Courier New;"&gt;this&lt;/STRONG&gt;&lt;SPAN style="font-family: Courier New; font-size: xx-small;"&gt;.&lt;/SPAN&gt;&lt;STRONG style="color: #660e7a; font-size: xx-small; font-family: Courier New;"&gt;appConfig&lt;/STRONG&gt;&lt;SPAN style="font-family: Courier New; font-size: xx-small;"&gt;.&lt;/SPAN&gt;&lt;STRONG style="color: #660e7a; font-size: xx-small; font-family: Courier New;"&gt;widgetPool&lt;/STRONG&gt;&lt;SPAN style="font-family: Courier New; font-size: xx-small;"&gt;.&lt;/SPAN&gt;&lt;STRONG style="color: #660e7a; font-size: xx-small; font-family: Courier New;"&gt;widgets&lt;/STRONG&gt;&lt;SPAN style="font-family: Courier New; font-size: xx-small;"&gt;[&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-family: Courier New; font-size: xx-small;"&gt;1&lt;/SPAN&gt;&lt;SPAN style="font-family: Courier New; font-size: xx-small;"&gt;]);&lt;BR /&gt; &lt;/SPAN&gt;&lt;EM style="color: #808080; font-size: xx-small; font-family: Courier New;"&gt;//close the 5th widget in the config.json inside the widgetOnScreen object&lt;BR /&gt; //or&lt;BR /&gt; // pm.closePanel(pm.activePanel);//close the active panel&lt;BR /&gt;&amp;nbsp; //End Bell Add&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;This is the error?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #808080; font-size: xx-small; font-family: Courier New;"&gt;init.js:114 TypeError: panel.setState is not a function&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Object.&amp;lt;anonymous&amp;gt; (PanelManager.js?wab_dv=2.9:197)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at init.js:63&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at k (init.js:107)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at b.extend.then.then.b.then (init.js:110)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Object.closePanel (PanelManager.js?wab_dv=2.9:192)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Object.onOpen (Widget.js?wab_dv=2.9:964)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Object.openWidget (WidgetManager.js?wab_dv=2.9:569)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Object._postWidgetStartup (WidgetManager.js?wab_dv=2.9:1130)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Object.&amp;lt;anonymous&amp;gt; (init.js:63)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Object.c [as startup] (init.js:119) "TypeError: panel.setState is not a function&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Object.&amp;lt;anonymous&amp;gt; (&lt;A href="http://localhost:63342/MAHGIS_2.9/jimu.js/PanelManager.js?wab_dv=2.9:197:15"&gt;http://localhost:63342/MAHGIS_2.9/jimu.js/PanelManager.js?wab_dv=2.9:197:15&lt;/A&gt;)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at &lt;A href="https://js.arcgis.com/3.25/init.js:63:337"&gt;https://js.arcgis.com/3.25/init.js:63:337&lt;/A&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at k (&lt;A href="https://js.arcgis.com/3.25/init.js:107:277"&gt;https://js.arcgis.com/3.25/init.js:107:277&lt;/A&gt;)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at b.extend.then.then.b.then (&lt;A href="https://js.arcgis.com/3.25/init.js:110:152"&gt;https://js.arcgis.com/3.25/init.js:110:152&lt;/A&gt;)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Object.closePanel (&lt;A href="http://localhost:63342/MAHGIS_2.9/jimu.js/PanelManager.js?wab_dv=2.9:192:50"&gt;http://localhost:63342/MAHGIS_2.9/jimu.js/PanelManager.js?wab_dv=2.9:192:50&lt;/A&gt;)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Object.onOpen (&lt;A href="http://localhost:63342/MAHGIS_2.9/widgets/CapacityCalculation/Widget.js?wab_dv=2.9:964:20"&gt;http://localhost:63342/MAHGIS_2.9/widgets/CapacityCalculation/Widget.js?wab_dv=2.9:964:20&lt;/A&gt;)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Object.openWidget (&lt;A href="http://localhost:63342/MAHGIS_2.9/jimu.js/WidgetManager.js?wab_dv=2.9:569:18"&gt;http://localhost:63342/MAHGIS_2.9/jimu.js/WidgetManager.js?wab_dv=2.9:569:18&lt;/A&gt;)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Object._postWidgetStartup (&lt;A href="http://localhost:63342/MAHGIS_2.9/jimu.js/WidgetManager.js?wab_dv=2.9:1130:12"&gt;http://localhost:63342/MAHGIS_2.9/jimu.js/WidgetManager.js?wab_dv=2.9:1130:12&lt;/A&gt;)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Object.&amp;lt;anonymous&amp;gt; (&lt;A href="https://js.arcgis.com/3.25/init.js:63:15"&gt;https://js.arcgis.com/3.25/init.js:63:15&lt;/A&gt;)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Object.c [as startup] (&lt;A href="https://js.arcgis.com/3.25/init.js:119:235"&gt;https://js.arcgis.com/3.25/init.js:119:235&lt;/A&gt;)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ----------------------------------------&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; rejected at a (&lt;A href="https://js.arcgis.com/3.25/init.js:108:174"&gt;https://js.arcgis.com/3.25/init.js:108:174&lt;/A&gt;)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at k (&lt;A href="https://js.arcgis.com/3.25/init.js:107:436"&gt;https://js.arcgis.com/3.25/init.js:107:436&lt;/A&gt;)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at b.extend.then.then.b.then (&lt;A href="https://js.arcgis.com/3.25/init.js:110:152"&gt;https://js.arcgis.com/3.25/init.js:110:152&lt;/A&gt;)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Object.closePanel (&lt;A href="http://localhost:63342/MAHGIS_2.9/jimu.js/PanelManager.js?wab_dv=2.9:192:50"&gt;http://localhost:63342/MAHGIS_2.9/jimu.js/PanelManager.js?wab_dv=2.9:192:50&lt;/A&gt;)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Object.onOpen (&lt;A href="http://localhost:63342/MAHGIS_2.9/widgets/CapacityCalculation/Widget.js?wab_dv=2.9:964:20"&gt;http://localhost:63342/MAHGIS_2.9/widgets/CapacityCalculation/Widget.js?wab_dv=2.9:964:20&lt;/A&gt;)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Object.openWidget (&lt;A href="http://localhost:63342/MAHGIS_2.9/jimu.js/WidgetManager.js?wab_dv=2.9:569:18"&gt;http://localhost:63342/MAHGIS_2.9/jimu.js/WidgetManager.js?wab_dv=2.9:569:18&lt;/A&gt;)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Object._postWidgetStartup (&lt;A href="http://localhost:63342/MAHGIS_2.9/jimu.js/WidgetManager.js?wab_dv=2.9:1130:12"&gt;http://localhost:63342/MAHGIS_2.9/jimu.js/WidgetManager.js?wab_dv=2.9:1130:12&lt;/A&gt;)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Object.&amp;lt;anonymous&amp;gt; (&lt;A href="https://js.arcgis.com/3.25/init.js:63:15"&gt;https://js.arcgis.com/3.25/init.js:63:15&lt;/A&gt;)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Object.c [as startup] (&lt;A href="https://js.arcgis.com/3.25/init.js:119:235"&gt;https://js.arcgis.com/3.25/init.js:119:235&lt;/A&gt;)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Object.&amp;lt;anonymous&amp;gt; (&lt;A href="http://localhost:63342/MAHGIS_2.9/jimu.js/BaseWidgetPanel.js?wab_dv=2.9:78:18"&gt;http://localhost:63342/MAHGIS_2.9/jimu.js/BaseWidgetPanel.js?wab_dv=2.9:78:18&lt;/A&gt;)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ----------------------------------------&lt;BR /&gt;Error&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at b.extend.then.then.b.then (&lt;A href="https://js.arcgis.com/3.25/init.js:110:97"&gt;https://js.arcgis.com/3.25/init.js:110:97&lt;/A&gt;)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Object.closePanel (&lt;A href="http://localhost:63342/MAHGIS_2.9/jimu.js/PanelManager.js?wab_dv=2.9:192:50"&gt;http://localhost:63342/MAHGIS_2.9/jimu.js/PanelManager.js?wab_dv=2.9:192:50&lt;/A&gt;)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Object.onOpen (&lt;A href="http://localhost:63342/MAHGIS_2.9/widgets/CapacityCalculation/Widget.js?wab_dv=2.9:964:20"&gt;http://localhost:63342/MAHGIS_2.9/widgets/CapacityCalculation/Widget.js?wab_dv=2.9:964:20&lt;/A&gt;)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Object.openWidget (&lt;A href="http://localhost:63342/MAHGIS_2.9/jimu.js/WidgetManager.js?wab_dv=2.9:569:18"&gt;http://localhost:63342/MAHGIS_2.9/jimu.js/WidgetManager.js?wab_dv=2.9:569:18&lt;/A&gt;)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Object._postWidgetStartup (&lt;A href="http://localhost:63342/MAHGIS_2.9/jimu.js/WidgetManager.js?wab_dv=2.9:1130:12"&gt;http://localhost:63342/MAHGIS_2.9/jimu.js/WidgetManager.js?wab_dv=2.9:1130:12&lt;/A&gt;)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Object.&amp;lt;anonymous&amp;gt; (&lt;A href="https://js.arcgis.com/3.25/init.js:63:15"&gt;https://js.arcgis.com/3.25/init.js:63:15&lt;/A&gt;)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Object.c [as startup] (&lt;A href="https://js.arcgis.com/3.25/init.js:119:235"&gt;https://js.arcgis.com/3.25/init.js:119:235&lt;/A&gt;)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at Object.&amp;lt;anonymous&amp;gt; (&lt;A href="http://localhost:63342/MAHGIS_2.9/jimu.js/BaseWidgetPanel.js?wab_dv=2.9:78:18"&gt;http://localhost:63342/MAHGIS_2.9/jimu.js/BaseWidgetPanel.js?wab_dv=2.9:78:18&lt;/A&gt;)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at &lt;A href="https://js.arcgis.com/3.25/init.js:63:337"&gt;https://js.arcgis.com/3.25/init.js:63:337&lt;/A&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; at k (&lt;A href="https://js.arcgis.com/3.25/init.js:107:277"&gt;https://js.arcgis.com/3.25/init.js:107:277&lt;/A&gt;)"&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2018 15:10:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/turning-off-esearch-widget-when-opening-another/m-p/62169#M1783</guid>
      <dc:creator>RichBell</dc:creator>
      <dc:date>2018-10-17T15:10:46Z</dc:date>
    </item>
    <item>
      <title>Re: Turning off eSearch Widget when opening another widget</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/turning-off-esearch-widget-when-opening-another/m-p/62170#M1784</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;Then you need to provide more info. What theme are you using and where in that theme is the eSearch widget added?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2018 15:22:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/turning-off-esearch-widget-when-opening-another/m-p/62170#M1784</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-10-17T15:22:48Z</dc:date>
    </item>
    <item>
      <title>Re: Turning off eSearch Widget when opening another widget</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/turning-off-esearch-widget-when-opening-another/m-p/62171#M1785</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm using a Foldable Panel Theme.&lt;/P&gt;&lt;P&gt;This is the config...&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #660e7a; font-size: xx-small; font-family: Courier New;"&gt;&lt;STRONG&gt;"widgetPool"&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;: {&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #660e7a; font-size: xx-small; font-family: Courier New;"&gt;"panel"&lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;: {&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #660e7a; font-size: xx-small; font-family: Courier New;"&gt;"uri"&lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;: &lt;/SPAN&gt;&lt;STRONG style=": ; color: #008000; font-size: xx-small; font-family: Courier New;"&gt;"themes/FoldableTheme/panels/FoldablePanel/Panel"&lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #660e7a; font-size: xx-small; font-family: Courier New;"&gt;"position"&lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;: {&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #660e7a; font-size: xx-small; font-family: Courier New;"&gt;"top"&lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;: &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: xx-small; font-family: Courier New;"&gt;5&lt;/SPAN&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #660e7a; font-size: xx-small; font-family: Courier New;"&gt;"left"&lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;: &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: xx-small; font-family: Courier New;"&gt;15&lt;/SPAN&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #660e7a; font-size: xx-small; font-family: Courier New;"&gt;"bottom"&lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;: &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: xx-small; font-family: Courier New;"&gt;5&lt;/SPAN&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #660e7a; font-size: xx-small; font-family: Courier New;"&gt;"zIndex"&lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;: &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: xx-small; font-family: Courier New;"&gt;5&lt;/SPAN&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #660e7a; font-size: xx-small; font-family: Courier New;"&gt;"relativeTo"&lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;: &lt;/SPAN&gt;&lt;STRONG style=": ; color: #008000; font-size: xx-small; font-family: Courier New;"&gt;"map"&lt;BR /&gt; &lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;}&lt;BR /&gt; },&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #660e7a; font-size: xx-small; font-family: Courier New;"&gt;"widgets"&lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;:[&lt;BR /&gt; {&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #660e7a; font-size: xx-small; font-family: Courier New;"&gt;"name"&lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;:&lt;/SPAN&gt;&lt;STRONG style=": ; color: #008000; font-size: xx-small; font-family: Courier New;"&gt;"eSearch"&lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #660e7a; font-size: xx-small; font-family: Courier New;"&gt;"label"&lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;: &lt;/SPAN&gt;&lt;STRONG style=": ; color: #008000; font-size: xx-small; font-family: Courier New;"&gt;"Sanitary Search Tools"&lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #660e7a; font-size: xx-small; font-family: Courier New;"&gt;"uri"&lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;: &lt;/SPAN&gt;&lt;STRONG style=": ; color: #008000; font-size: xx-small; font-family: Courier New;"&gt;"widgets/eSearchSanitary/Widget"&lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #660e7a; font-size: xx-small; font-family: Courier New;"&gt;"config"&lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;: &lt;/SPAN&gt;&lt;STRONG style=": ; color: #008000; font-size: xx-small; font-family: Courier New;"&gt;"configs/eSearch/config_eSanitary.json"&lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #660e7a; font-size: xx-small; font-family: Courier New;"&gt;"icon"&lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;: &lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN style="color: #008000; font-size: xx-small; font-family: Courier New;"&gt;"configs&lt;/SPAN&gt;&lt;SPAN style="color: #000080; font-size: xx-small; font-family: Courier New;"&gt;\\&lt;/SPAN&gt;&lt;SPAN style="color: #008000; font-size: xx-small; font-family: Courier New;"&gt;eSearch&lt;/SPAN&gt;&lt;SPAN style="color: #000080; font-size: xx-small; font-family: Courier New;"&gt;\\&lt;/SPAN&gt;&lt;SPAN style="color: #008000; font-size: xx-small; font-family: Courier New;"&gt;i_searchsan.png"&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #660e7a; font-size: xx-small; font-family: Courier New;"&gt;"id"&lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;: &lt;/SPAN&gt;&lt;STRONG style=": ; color: #008000; font-size: xx-small; font-family: Courier New;"&gt;"widgets_eSearchSanitary_Widget_500"&lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #660e7a; font-size: xx-small; font-family: Courier New;"&gt;"openAtStart"&lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;: &lt;/SPAN&gt;&lt;STRONG style=": ; color: #000080; font-size: xx-small; font-family: Courier New;"&gt;true&lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #660e7a; font-size: xx-small; font-family: Courier New;"&gt;"position"&lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;: {&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #660e7a; font-size: xx-small; font-family: Courier New;"&gt;"top"&lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;: &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: xx-small; font-family: Courier New;"&gt;70&lt;/SPAN&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #660e7a; font-size: xx-small; font-family: Courier New;"&gt;"left"&lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;: &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: xx-small; font-family: Courier New;"&gt;4&lt;/SPAN&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #660e7a; font-size: xx-small; font-family: Courier New;"&gt;"height"&lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;: &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: xx-small; font-family: Courier New;"&gt;420&lt;/SPAN&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #660e7a; font-size: xx-small; font-family: Courier New;"&gt;"width"&lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;: &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: xx-small; font-family: Courier New;"&gt;360&lt;/SPAN&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #660e7a; font-size: xx-small; font-family: Courier New;"&gt;"relativeTo"&lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;: &lt;/SPAN&gt;&lt;STRONG style=": ; color: #008000; font-size: xx-small; font-family: Courier New;"&gt;"map"&lt;BR /&gt; &lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;}, &lt;/SPAN&gt;&lt;STRONG style=": ; color: #660e7a; font-size: xx-small; font-family: Courier New;"&gt;"index"&lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;: &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: xx-small; font-family: Courier New;"&gt;1&lt;/SPAN&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #660e7a; font-size: xx-small; font-family: Courier New;"&gt;"version"&lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;: &lt;/SPAN&gt;&lt;STRONG style=": ; color: #008000; font-size: xx-small; font-family: Courier New;"&gt;"2.7"&lt;BR /&gt; &lt;/STRONG&gt;&lt;SPAN style="font-size: xx-small; font-family: Courier New;"&gt;},&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;Where does the "Require" for the PanelManager go?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;That may be the issue???&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2018 15:29:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/turning-off-esearch-widget-when-opening-another/m-p/62171#M1785</guid>
      <dc:creator>RichBell</dc:creator>
      <dc:date>2018-10-17T15:29:52Z</dc:date>
    </item>
    <item>
      <title>Re: Turning off eSearch Widget when opening another widget</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/turning-off-esearch-widget-when-opening-another/m-p/62172#M1786</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;with the rest of the require entries at the top of the widget.js.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2018 16:17:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/turning-off-esearch-widget-when-opening-another/m-p/62172#M1786</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-10-17T16:17:06Z</dc:date>
    </item>
    <item>
      <title>Re: Turning off eSearch Widget when opening another widget</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/turning-off-esearch-widget-when-opening-another/m-p/62173#M1787</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh, then yes they are in the correct place. but still no luck&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2018 17:20:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/turning-off-esearch-widget-when-opening-another/m-p/62173#M1787</guid>
      <dc:creator>RichBell</dc:creator>
      <dc:date>2018-10-17T17:20:59Z</dc:date>
    </item>
    <item>
      <title>Re: Turning off eSearch Widget when opening another widget</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/turning-off-esearch-widget-when-opening-another/m-p/62174#M1788</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Here is the correct code for the onOpen function for your setup then:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; pm &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; PanelManager&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;getInstance&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;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pm&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;closePanel&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;appConfig&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;widgetPool&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;widgets&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;id &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'_panel'&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;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Assuming that the eSearch is actually your second widget in the header controller widget. From your code paste above it looks like it is the first in the header controller and that would mean.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; pm &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; PanelManager&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;getInstance&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;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pm&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;closePanel&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;appConfig&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;widgetPool&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;widgets&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;id &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'_panel'&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;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 22:22:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/turning-off-esearch-widget-when-opening-another/m-p/62174#M1788</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-10T22:22:11Z</dc:date>
    </item>
    <item>
      <title>Re: Turning off eSearch Widget when opening another widget</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/turning-off-esearch-widget-when-opening-another/m-p/62175#M1789</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Still no luck turning of the eSearch Widget?&lt;/P&gt;&lt;P&gt;I'm missing something???&lt;/P&gt;&lt;P&gt;Turning off the Imagery does work...Thank You!&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Code" class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/424639_code.jpg" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="error" class="image-2 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/424715_error.jpg" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2018 18:46:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/turning-off-esearch-widget-when-opening-another/m-p/62175#M1789</guid>
      <dc:creator>RichBell</dc:creator>
      <dc:date>2018-10-17T18:46:28Z</dc:date>
    </item>
    <item>
      <title>Re: Turning off eSearch Widget when opening another widget</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/turning-off-esearch-widget-when-opening-another/m-p/62176#M1790</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rich,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Sounds like you have messed up your widgets require array. Can you Post your define section and the following function list?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2018 19:39:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/turning-off-esearch-widget-when-opening-another/m-p/62176#M1790</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-10-17T19:39:22Z</dc:date>
    </item>
    <item>
      <title>Re: Turning off eSearch Widget when opening another widget</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/turning-off-esearch-widget-when-opening-another/m-p/62177#M1791</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I attached the entire widget&lt;/P&gt;&lt;P&gt;Thanks a bunch&lt;/P&gt;&lt;P&gt;Rich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2018 19:47:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/turning-off-esearch-widget-when-opening-another/m-p/62177#M1791</guid>
      <dc:creator>RichBell</dc:creator>
      <dc:date>2018-10-17T19:47:28Z</dc:date>
    </item>
    <item>
      <title>Re: Turning off eSearch Widget when opening another widget</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/turning-off-esearch-widget-when-opening-another/m-p/62178#M1792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you must have missed a step when attaching...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2018 19:48:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/turning-off-esearch-widget-when-opening-another/m-p/62178#M1792</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-10-17T19:48:45Z</dc:date>
    </item>
    <item>
      <title>Re: Turning off eSearch Widget when opening another widget</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/turning-off-esearch-widget-when-opening-another/m-p/62179#M1793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Humm?&lt;/P&gt;&lt;P&gt;Should be attached now.&lt;/P&gt;&lt;P&gt;Rich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2018 19:51:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/turning-off-esearch-widget-when-opening-another/m-p/62179#M1793</guid>
      <dc:creator>RichBell</dc:creator>
      <dc:date>2018-10-17T19:51:40Z</dc:date>
    </item>
  </channel>
</rss>

