<?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: How to disable popup in the Search widget using popupEnabled in JavaScript API 4.4? in .NET and the Esri JavaScript API Questions</title>
    <link>https://community.esri.com/t5/net-and-the-esri-javascript-api-questions/how-to-disable-popup-in-the-search-widget-using/m-p/874260#M89</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;nbsp;Make &lt;STRONG&gt;enableInfoWindow: false&amp;nbsp; &amp;nbsp;In Search&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;var search = new Search({&lt;BR /&gt; map: map,&lt;BR /&gt; enableLabel: true,&lt;BR /&gt; enableInfoWindow: false,&lt;BR /&gt; popupEnabled: false&lt;BR /&gt; }, "search");&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Jul 2018 07:04:17 GMT</pubDate>
    <dc:creator>MohamedShefeek</dc:creator>
    <dc:date>2018-07-11T07:04:17Z</dc:date>
    <item>
      <title>How to disable popup in the Search widget using popupEnabled in JavaScript API 4.4?</title>
      <link>https://community.esri.com/t5/net-and-the-esri-javascript-api-questions/how-to-disable-popup-in-the-search-widget-using/m-p/874259#M88</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to work with the Search widget example in ArcGIS JavaScript API 4.4 (&lt;A class="link-titled" href="https://developers.arcgis.com/javascript/latest/sample-code/widgets-search-3d/index.html" title="https://developers.arcgis.com/javascript/latest/sample-code/widgets-search-3d/index.html"&gt;Search Widget | ArcGIS API for JavaScript 4.4&lt;/A&gt;&amp;nbsp;) and I am not able to disable the popup with popupEnabled property. Using version 4.3 of the API is working. Is this a bug?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The example in the documentation that i am trying to use is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;BR /&gt;&amp;lt;html&amp;gt;&lt;BR /&gt;&amp;lt;head&amp;gt;&lt;BR /&gt; &amp;lt;meta charset="utf-8"&amp;gt;&lt;BR /&gt; &amp;lt;meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no"&amp;gt;&lt;BR /&gt; &amp;lt;title&amp;gt;Search Widget - 4.4&amp;lt;/title&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;style&amp;gt;&lt;BR /&gt; html,&lt;BR /&gt; body,&lt;BR /&gt; #viewDiv {&lt;BR /&gt; padding: 0;&lt;BR /&gt; margin: 0;&lt;BR /&gt; height: 100%;&lt;BR /&gt; width: 100%;&lt;BR /&gt; }&lt;BR /&gt; &amp;lt;/style&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;lt;link rel="stylesheet" href="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fjs.arcgis.com%2F4.4%2Fesri%2Fcss%2Fmain.css" rel="nofollow" target="_blank"&gt;https://js.arcgis.com/4.4/esri/css/main.css&lt;/A&gt;&lt;SPAN&gt;"&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;lt;script src="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.esri.com/external-link.jspa?url=https%3A%2F%2Fjs.arcgis.com%2F4.4%2F" rel="nofollow" target="_blank"&gt;https://js.arcgis.com/4.4/&lt;/A&gt;&lt;SPAN&gt;"&amp;gt;&amp;lt;/script&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;script&amp;gt;&lt;BR /&gt; require([&lt;BR /&gt; "esri/Map",&lt;BR /&gt; "esri/views/SceneView",&lt;BR /&gt; "esri/widgets/Search",&lt;BR /&gt; "dojo/domReady!"&lt;BR /&gt; ], function(&lt;BR /&gt; Map,&lt;BR /&gt; SceneView,&lt;BR /&gt; Search) {&lt;/P&gt;&lt;P&gt;var map = new Map({&lt;BR /&gt; basemap: "satellite",&lt;BR /&gt; ground: "world-elevation"&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;var view = new SceneView({&lt;BR /&gt; scale: 123456789,&lt;BR /&gt; container: "viewDiv",&lt;BR /&gt; map: map&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;var searchWidget = new Search({&lt;BR /&gt; view: view,&lt;BR /&gt; popupEnabled: false&lt;BR /&gt; });&lt;/P&gt;&lt;P&gt;// Add the search widget to the very top left corner of the view&lt;BR /&gt; view.ui.add(searchWidget, {&lt;BR /&gt; position: "top-left",&lt;BR /&gt; index: 0&lt;BR /&gt; });&lt;BR /&gt; });&lt;BR /&gt; &amp;lt;/script&amp;gt;&lt;BR /&gt;&amp;lt;/head&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;body&amp;gt;&lt;BR /&gt; &amp;lt;div id="viewDiv"&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&amp;lt;/body&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/html&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Aug 2017 21:57:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-and-the-esri-javascript-api-questions/how-to-disable-popup-in-the-search-widget-using/m-p/874259#M88</guid>
      <dc:creator>FernandoVara</dc:creator>
      <dc:date>2017-08-04T21:57:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to disable popup in the Search widget using popupEnabled in JavaScript API 4.4?</title>
      <link>https://community.esri.com/t5/net-and-the-esri-javascript-api-questions/how-to-disable-popup-in-the-search-widget-using/m-p/874260#M89</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;nbsp;Make &lt;STRONG&gt;enableInfoWindow: false&amp;nbsp; &amp;nbsp;In Search&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;var search = new Search({&lt;BR /&gt; map: map,&lt;BR /&gt; enableLabel: true,&lt;BR /&gt; enableInfoWindow: false,&lt;BR /&gt; popupEnabled: false&lt;BR /&gt; }, "search");&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2018 07:04:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-and-the-esri-javascript-api-questions/how-to-disable-popup-in-the-search-widget-using/m-p/874260#M89</guid>
      <dc:creator>MohamedShefeek</dc:creator>
      <dc:date>2018-07-11T07:04:17Z</dc:date>
    </item>
  </channel>
</rss>

