<?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>idea Disable all Export data actions at once in ArcGIS Experience Builder Ideas</title>
    <link>https://community.esri.com/t5/arcgis-experience-builder-ideas/disable-all-export-data-actions-at-once/idi-p/1395756</link>
    <description>&lt;P&gt;In Experience Builder, disabling the Export data action is done on the data source. This has to be done on every single layer. It is great to have the possibility to "fine-tune" and choose for every single layer but itis nonsense that it is not possible to disable all export at once in an app.&lt;/P&gt;</description>
    <pubDate>Thu, 14 Mar 2024 11:40:04 GMT</pubDate>
    <dc:creator>Thomas1</dc:creator>
    <dc:date>2024-03-14T11:40:04Z</dc:date>
    <item>
      <title>Disable all Export data actions at once</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-ideas/disable-all-export-data-actions-at-once/idi-p/1395756</link>
      <description>&lt;P&gt;In Experience Builder, disabling the Export data action is done on the data source. This has to be done on every single layer. It is great to have the possibility to "fine-tune" and choose for every single layer but itis nonsense that it is not possible to disable all export at once in an app.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2024 11:40:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-ideas/disable-all-export-data-actions-at-once/idi-p/1395756</guid>
      <dc:creator>Thomas1</dc:creator>
      <dc:date>2024-03-14T11:40:04Z</dc:date>
    </item>
    <item>
      <title>Re: Disable all Export data actions at once</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-ideas/disable-all-export-data-actions-at-once/idc-p/1399293#M2445</link>
      <description>&lt;P&gt;In addition to being able to do a disable export data en mass, it would also be helpful to have to option to toggle Export on and off in the data action section of widgets.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2024 20:48:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-ideas/disable-all-export-data-actions-at-once/idc-p/1399293#M2445</guid>
      <dc:creator>Ashley_Snyder</dc:creator>
      <dc:date>2024-03-21T20:48:44Z</dc:date>
    </item>
    <item>
      <title>Re: Disable all Export data actions at once</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-ideas/disable-all-export-data-actions-at-once/idc-p/1558990#M3309</link>
      <description>&lt;P&gt;lol ive spent days in company paid time navigating through each layer and turning them off one by one&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2024 23:47:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-ideas/disable-all-export-data-actions-at-once/idc-p/1558990#M3309</guid>
      <dc:creator>DanCopKac</dc:creator>
      <dc:date>2024-11-14T23:47:53Z</dc:date>
    </item>
    <item>
      <title>Re: Disable all Export data actions at once</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-ideas/disable-all-export-data-actions-at-once/idc-p/1561854#M3353</link>
      <description>&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/234823"&gt;@Thomas1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I found a solution! I tweaked the boolean so that all data sources default to disallow export, but the setting can still be manually changed.&lt;/P&gt;&lt;P&gt;If you are on Developer Edition and suffering from the same problem as me, you can follow these steps:&lt;/P&gt;&lt;P&gt;In the installation folder navigate to the following file&lt;/P&gt;&lt;P&gt;client\dist\jimu-core\data-source.js&lt;/P&gt;&lt;P&gt;find the line&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;return r?r.allowToExportData():(console.error("Origin data source is not created, allow to export data by default. Output data source id is ",this.id),Promise.resolve(!0))}return!this.getDataSourceJson().disableExport&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;change it to&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;return r?r.allowToExportData():(console.error("Origin data source is not created, allow to export data by default. Output data source id is ",this.id),Promise.resolve(!0))}return this.getDataSourceJson().disableExport&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Now all layers will default to not allow export when the config.json value disableExport is not yet set. Note that anyone looking in the config.json will get confused because this flag will no longer make sense.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Additionally, this creates chaos in the builder because the toggle in the data panel still says "Allow export". So I went ahead and changed this text to "Disable export" as well so the toggle button makes more sense.&amp;nbsp;&lt;/P&gt;&lt;P&gt;That can be done by following these steps:&amp;nbsp;&lt;/P&gt;&lt;P&gt;Navigate to&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;Client\dist\builder\widgets\data-source-setting\dist\runtime\widget.js&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;change&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;allowExport:"Allow export",&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;to&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;allowExport:"Disable export",&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now you don't have to spend hours or days wading through the data panel to disable exports for each of your layers one by one!&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 22 Nov 2024 19:36:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-ideas/disable-all-export-data-actions-at-once/idc-p/1561854#M3353</guid>
      <dc:creator>DanCopKac</dc:creator>
      <dc:date>2024-11-22T19:36:53Z</dc:date>
    </item>
    <item>
      <title>Re: Disable all Export data actions at once</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-ideas/disable-all-export-data-actions-at-once/idc-p/1561857#M3354</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/234823"&gt;@Thomas1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;I found my own solution! I tweaked the boolean so that all data sources default to disallow export, but the setting can still be manually changed.&amp;nbsp;&lt;A href="https://community.esri.com/t5/arcgis-experience-builder-questions/allow-export-for-all-layers/m-p/1558995" target="_blank"&gt;https://community.esri.com/t5/arcgis-experience-builder-questions/allow-export-for-all-layers/m-p/1558995&lt;/A&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 22 Nov 2024 19:53:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-ideas/disable-all-export-data-actions-at-once/idc-p/1561857#M3354</guid>
      <dc:creator>DanCopKac</dc:creator>
      <dc:date>2024-11-22T19:53:33Z</dc:date>
    </item>
    <item>
      <title>Re: Disable all Export data actions at once</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-ideas/disable-all-export-data-actions-at-once/idc-p/1562213#M3360</link>
      <description>&lt;P&gt;I wonder if you could make a custom widget (or perhaps only in settings) that would disable all the export, and then let you pick one layer to enable?&lt;/P&gt;</description>
      <pubDate>Mon, 25 Nov 2024 14:52:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-ideas/disable-all-export-data-actions-at-once/idc-p/1562213#M3360</guid>
      <dc:creator>TimWestern</dc:creator>
      <dc:date>2024-11-25T14:52:46Z</dc:date>
    </item>
    <item>
      <title>Re: Disable all Export data actions at once</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-ideas/disable-all-export-data-actions-at-once/idc-p/1574826#M3504</link>
      <description>&lt;P&gt;This would be really useful. I've just had to go through and disable individually for 50+ layers, made even worse by the fact you have to scroll down the page each time you go back to the data sources to get to the next layer.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't have developer edition so that's not an option.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jan 2025 15:31:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-ideas/disable-all-export-data-actions-at-once/idc-p/1574826#M3504</guid>
      <dc:creator>DebSF</dc:creator>
      <dc:date>2025-01-13T15:31:08Z</dc:date>
    </item>
    <item>
      <title>Re: Disable all Export data actions at once</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-ideas/disable-all-export-data-actions-at-once/idc-p/1626152#M4191</link>
      <description>&lt;P&gt;Yes please!! It's very tedious to disable export on all layers, across multiple ExB apps.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Jun 2025 13:21:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-ideas/disable-all-export-data-actions-at-once/idc-p/1626152#M4191</guid>
      <dc:creator>JBH</dc:creator>
      <dc:date>2025-06-24T13:21:37Z</dc:date>
    </item>
    <item>
      <title>Re: Disable all Export data actions at once</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-ideas/disable-all-export-data-actions-at-once/idc-p/1626161#M4193</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/635433"&gt;@JBH&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/783517"&gt;@DebSF&lt;/a&gt;&amp;nbsp;This has been implemented:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Thomas1_0-1750772491540.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/134930i31559562B67E8E51/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Thomas1_0-1750772491540.png" alt="Thomas1_0-1750772491540.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Jun 2025 13:43:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-ideas/disable-all-export-data-actions-at-once/idc-p/1626161#M4193</guid>
      <dc:creator>Thomas1</dc:creator>
      <dc:date>2025-06-24T13:43:59Z</dc:date>
    </item>
    <item>
      <title>Re: Disable all Export data actions at once</title>
      <link>https://community.esri.com/t5/arcgis-experience-builder-ideas/disable-all-export-data-actions-at-once/idc-p/1626232#M4194</link>
      <description>&lt;P&gt;I had no clue! Thanks so much&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/234823"&gt;@Thomas1&lt;/a&gt;!!&lt;/P&gt;</description>
      <pubDate>Tue, 24 Jun 2025 15:34:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-experience-builder-ideas/disable-all-export-data-actions-at-once/idc-p/1626232#M4194</guid>
      <dc:creator>JBH</dc:creator>
      <dc:date>2025-06-24T15:34:49Z</dc:date>
    </item>
  </channel>
</rss>

