<?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 change default docked popup location in Experience Builder in ArcGIS Experience Builder Questions</title>
    <link>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1117063#M3203</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/123963"&gt;@DavidMartinez&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Is it possible to achieve this same result in ArcGIS Online Experience Builder? The issue remains in ArcGIS Online where a docked pop-up in the right hand corner will obscure tools, and there is no option to configure default pop-up location.&lt;/P&gt;&lt;P&gt;Please let me know if I should submit this as an Idea.&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Sam&lt;/P&gt;</description>
    <pubDate>Mon, 15 Nov 2021 23:17:27 GMT</pubDate>
    <dc:creator>williamsonsa_fultonhogan</dc:creator>
    <dc:date>2021-11-15T23:17:27Z</dc:date>
    <item>
      <title>How to change default docked popup location in Experience Builder</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1036450#M1626</link>
      <description>&lt;P&gt;Experience Builder Version: 1.2 (running on ArcGIS Enterprise)&lt;/P&gt;&lt;P&gt;Is it possible to change the default location for docked popups in experience builder?&amp;nbsp; The experience I am building defaults to the top-right of the screen which obstructs other tools.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Undocked:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AndyHodren1_0-1615779161455.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/8434i088EEE08B9198C08/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AndyHodren1_0-1615779161455.png" alt="AndyHodren1_0-1615779161455.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Docked:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AndyHodren1_1-1615779178099.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/8435i0BF8398B9068CCD3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AndyHodren1_1-1615779178099.png" alt="AndyHodren1_1-1615779178099.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Mar 2021 03:33:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1036450#M1626</guid>
      <dc:creator>AndyHodren1</dc:creator>
      <dc:date>2021-03-15T03:33:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to change default docked popup location in Experience Builder</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1040700#M1665</link>
      <description>&lt;P&gt;It is possible, but you need to modify the map widget code.&amp;nbsp;&lt;SPAN&gt;You will need to make a copy of the map widget and place it in your extensions folder if you plan to modify it.&amp;nbsp;&lt;/SPAN&gt;In the mapbase.tsx file located under copiedmapwidget/src/runtime/components there are two functions for the view, initMapView and initSceneView. You could add the dockOptions object and position property to change the position in the view.&amp;nbsp; For example,&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;mapViewOption&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt; {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;map&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;tempWebmap&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;popup&lt;/SPAN&gt;&lt;SPAN&gt;: {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;dockOptions&lt;/SPAN&gt;&lt;SPAN&gt;: {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;position&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;'bottom-left'&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;},&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;container&lt;/SPAN&gt;&lt;SPAN&gt;: this.&lt;/SPAN&gt;&lt;SPAN&gt;mapContainer&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;};&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;David&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 25 Mar 2021 17:45:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1040700#M1665</guid>
      <dc:creator>DavidMartinez</dc:creator>
      <dc:date>2021-03-25T17:45:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to change default docked popup location in Experience Builder</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1040908#M1666</link>
      <description>&lt;P&gt;Awesome thank you David!&lt;/P&gt;</description>
      <pubDate>Fri, 26 Mar 2021 01:15:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1040908#M1666</guid>
      <dc:creator>AndyHodren1</dc:creator>
      <dc:date>2021-03-26T01:15:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to change default docked popup location in Experience Builder</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1117063#M3203</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/123963"&gt;@DavidMartinez&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Is it possible to achieve this same result in ArcGIS Online Experience Builder? The issue remains in ArcGIS Online where a docked pop-up in the right hand corner will obscure tools, and there is no option to configure default pop-up location.&lt;/P&gt;&lt;P&gt;Please let me know if I should submit this as an Idea.&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Sam&lt;/P&gt;</description>
      <pubDate>Mon, 15 Nov 2021 23:17:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1117063#M3203</guid>
      <dc:creator>williamsonsa_fultonhogan</dc:creator>
      <dc:date>2021-11-15T23:17:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to change default docked popup location in Experience Builder</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1138247#M3602</link>
      <description>&lt;P&gt;Indeed. Pity that the dock position can't be changed to e.g. lower right corner. OR allow to move the position of the standard Search window, because it interferes with the docked popup. I am aware of the Search widget, but it is not as neat as the standard Search window.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jan 2022 08:41:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1138247#M3602</guid>
      <dc:creator>Geraldine</dc:creator>
      <dc:date>2022-01-28T08:41:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to change default docked popup location in Experience Builder</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1270423#M6519</link>
      <description>&lt;P&gt;We second this request. Is there any update on this&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/124928"&gt;@Jianxia&lt;/a&gt;&amp;nbsp;?&lt;/P&gt;</description>
      <pubDate>Wed, 22 Mar 2023 14:51:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1270423#M6519</guid>
      <dc:creator>Amanda__Huber</dc:creator>
      <dc:date>2023-03-22T14:51:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to change default docked popup location in Experience Builder</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1272903#M6567</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/304310"&gt;@Amanda__Huber&lt;/a&gt;&amp;nbsp;Could you please submit an enhancement request to Esri Support? Currently the popup is handled by Map Viewer.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Mar 2023 03:38:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1272903#M6567</guid>
      <dc:creator>Jianxia</dc:creator>
      <dc:date>2023-03-29T03:38:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to change default docked popup location in Experience Builder</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1273024#M6572</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/124928"&gt;@Jianxia&lt;/a&gt;&amp;nbsp;this is good to know, thanks for the additional information. I&lt;/P&gt;&lt;P&gt;'ll submit an enhancement request.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Amanda&lt;/P&gt;</description>
      <pubDate>Wed, 29 Mar 2023 13:36:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1273024#M6572</guid>
      <dc:creator>Amanda__Huber</dc:creator>
      <dc:date>2023-03-29T13:36:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to change default docked popup location in Experience Builder</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1317612#M7928</link>
      <description>&lt;P&gt;I would like to voice my support for this enhancement. Is there a way I can add my voice to that request? It would be really helpful, especially since the map viewer tools can't be moved.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Aug 2023 19:17:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1317612#M7928</guid>
      <dc:creator>ZachBodenner</dc:creator>
      <dc:date>2023-08-10T19:17:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to change default docked popup location in Experience Builder</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1317634#M7931</link>
      <description>&lt;P&gt;Hi David, I'm trying to follow along with your suggestion but running into issues viewing the new widget in the ExB. I copied the map widget and pasted it into client/your-extensions/widgets, added code sample above:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ZachBodenner_0-1691696600536.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/77887i9249C9E04FD7515D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ZachBodenner_0-1691696600536.png" alt="ZachBodenner_0-1691696600536.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;changed the name of the widget in the manifest.json to Map2, and then attempted to run the compiler as described in step 5 of this &lt;A href="https://doc.arcgis.com/en/experience-builder/11.0/configure-widgets/add-custom-widgets.htm" target="_self"&gt;documentation&lt;/A&gt;. However, I get an error in the command prompt:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;C:\Program Files\ArcGIS\ArcGISExperienceBuilder\client&amp;gt;npm run build:prod&lt;/P&gt;&lt;P&gt;&amp;gt; exb-client@1.11.0 build:prod&lt;BR /&gt;&amp;gt; cross-env NODE_ENV=production OUTPUT_FOLDER=./dist-prod webpack --mode production&lt;/P&gt;&lt;P&gt;'cross-env' is not recognized as an internal or external command,&lt;BR /&gt;operable program or batch file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Am I missing a step? I don't have a lot of experience with customizing or creating new widgets.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Aug 2023 19:44:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1317634#M7931</guid>
      <dc:creator>ZachBodenner</dc:creator>
      <dc:date>2023-08-10T19:44:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to change default docked popup location in Experience Builder</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1317873#M7938</link>
      <description>&lt;P&gt;Make sure that the name in manifest.json matches the name of the folder it's in.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Aug 2023 15:10:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1317873#M7938</guid>
      <dc:creator>JeffreyThompson2</dc:creator>
      <dc:date>2023-08-11T15:10:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to change default docked popup location in Experience Builder</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1317935#M7941</link>
      <description>&lt;P&gt;Kinda like this?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ZachBodenner_0-1691771466425.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/77937iEE72FB883EA063EA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ZachBodenner_0-1691771466425.png" alt="ZachBodenner_0-1691771466425.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;That doesn't seem to have made a difference.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Aug 2023 16:31:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1317935#M7941</guid>
      <dc:creator>ZachBodenner</dc:creator>
      <dc:date>2023-08-11T16:31:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to change default docked popup location in Experience Builder</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1317961#M7943</link>
      <description>&lt;P&gt;Are you trying to do a server installation? You are connected to the C drive.&lt;/P&gt;&lt;P&gt;If you are trying to set up a local installation on your desktop, you should be following these directions.&amp;nbsp;&lt;A href="https://developers.arcgis.com/experience-builder/guide/install-guide/" target="_blank"&gt;https://developers.arcgis.com/experience-builder/guide/install-guide/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Aug 2023 17:26:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1317961#M7943</guid>
      <dc:creator>JeffreyThompson2</dc:creator>
      <dc:date>2023-08-11T17:26:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to change default docked popup location in Experience Builder</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1317971#M7944</link>
      <description>&lt;P&gt;Ah well I've already done the installation, this particular one with the assistance of an ESRi tech to get the Experience Builder running as a Windows Service as opposed to starting it up from the command prompt. Our installation experience revealed that we couldn't run ExB as a service if it was installed on a Network location, only on a machine's C drive, so there it lives. All I'm looking to do now is add the new widget.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Aug 2023 18:13:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1317971#M7944</guid>
      <dc:creator>ZachBodenner</dc:creator>
      <dc:date>2023-08-11T18:13:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to change default docked popup location in Experience Builder</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1371144#M10372</link>
      <description>&lt;P&gt;I was able to modify my copy of the 'arcgis-map' widget to dock the popup by default by updating the 'onJimuMapViewCreated' function in v1.13. To change the location of the docked popup update the "position" attribute.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;onJimuMapViewCreated = (jimuMapView: JimuMapView) =&amp;gt; {
    jimuMapView.setMapWidgetState(this.props.state)
    this.setShowPopupUponSelectionForJimuMapView(jimuMapView)
    // START CUSTOM CODE
    console.log('onJimuMapViewCreated function loaded')
    if (jimuMapView.view &amp;amp;&amp;amp; jimuMapView.view.popup) {
      // Modify the popup property to dock the popup by default
      jimuMapView.view.popup.dockEnabled = true;
      jimuMapView.view.popup.dockOptions = {
        breakpoint: false,
        position: "top-right"
      };
    } else {
      console.error('MapView or Popup is not initialized');
    }
    // END CUSTOM CODE
  }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jan 2024 15:39:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1371144#M10372</guid>
      <dc:creator>Yuriko</dc:creator>
      <dc:date>2024-01-18T15:39:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to change default docked popup location in Experience Builder</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1390255#M11273</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/124928"&gt;@Jianxia&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/304310"&gt;@Amanda__Huber&lt;/a&gt;&lt;/P&gt;&lt;P&gt;What is the status with the enhancement?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jianxia wrote "&lt;SPAN&gt;Currently the popup is handled by Map Viewer." Can't ExB use the configuration from Map Viewer? Now if I save&amp;nbsp;&lt;/SPAN&gt;&amp;nbsp;the&amp;nbsp;&lt;SPAN&gt;Map Viewer with docked popups it won't be docked in ExB.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 11:11:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1390255#M11273</guid>
      <dc:creator>Thomas1</dc:creator>
      <dc:date>2024-03-04T11:11:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to change default docked popup location in Experience Builder</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1426842#M12529</link>
      <description>&lt;P&gt;Configuring where to dock the pop up from 6 positions is planned for the upcoming June release of ArcGIS Online.&lt;/P&gt;</description>
      <pubDate>Fri, 10 May 2024 01:14:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1426842#M12529</guid>
      <dc:creator>Jianxia</dc:creator>
      <dc:date>2024-05-10T01:14:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to change default docked popup location in Experience Builder</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1514103#M14057</link>
      <description>&lt;P&gt;The ability to dock the popup is great. It's now under Map -&amp;gt; Content configuration. But what would also be good is the ability to add the popup to a sidebar like in the picture below. (and stop the popup displaying). The Feature Info window is close put not the same.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Bryan_krg_0-1722597911955.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/111443i70BED774FD5A741D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Bryan_krg_0-1722597911955.png" alt="Bryan_krg_0-1722597911955.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Aug 2024 11:25:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1514103#M14057</guid>
      <dc:creator>Bryan_krg</dc:creator>
      <dc:date>2024-08-02T11:25:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to change default docked popup location in Experience Builder</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1514136#M14058</link>
      <description>&lt;P&gt;I'd like to agree with&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/820117"&gt;@Bryan_krg&lt;/a&gt;&amp;nbsp;on this one: the feature info widget is not the same, primarily in how it reads Arcade. I spoke with some of the ExB Team at the UC this year about it (still haven't gotten back to me) and they said they would investigate and probably log a bug. It would be nice to have even more auto-docking options, but this is a good feature added, thank you&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/124928"&gt;@Jianxia&lt;/a&gt;&amp;nbsp;!&lt;/P&gt;</description>
      <pubDate>Fri, 02 Aug 2024 12:35:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1514136#M14058</guid>
      <dc:creator>ZachBodenner</dc:creator>
      <dc:date>2024-08-02T12:35:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to change default docked popup location in Experience Builder</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1514269#M14062</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/820117"&gt;@Bryan_krg&lt;/a&gt;&amp;nbsp;, could you please elaborate a bit more on Feature Info not working in the way you want in a side panel?&lt;/P&gt;</description>
      <pubDate>Fri, 02 Aug 2024 16:55:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-questions/how-to-change-default-docked-popup-location-in/m-p/1514269#M14062</guid>
      <dc:creator>Jianxia</dc:creator>
      <dc:date>2024-08-02T16:55:49Z</dc:date>
    </item>
  </channel>
</rss>

