<?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: Go Back or Forward to Previous Extents in Experience Builder Custom Widgets</title>
    <link>https://community.esri.com/t5/experience-builder-custom-widgets/go-back-or-forward-to-previous-extents/m-p/1362483#M169</link>
    <description>&lt;P&gt;I'm not sure. I haven't tried hosting a widget on Enterprise. My first guess would be compatibility issues between your version of Enterprise and the version of the widget.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/experience-builder/guide/release-versions/" target="_blank"&gt;https://developers.arcgis.com/experience-builder/guide/release-versions/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;It is marked in manifest.json as Experience Builder version 1.11, so it might not be accepted by Enterprise versions before 11.2. It should be backwards compatible to 1.9 if you want to try changing that, but there is a key Javascript API method that may not be fully compatible with Enterprise 11.0.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 19 Dec 2023 13:57:31 GMT</pubDate>
    <dc:creator>JeffreyThompson2</dc:creator>
    <dc:date>2023-12-19T13:57:31Z</dc:date>
    <item>
      <title>Go Back or Forward to Previous Extents</title>
      <link>https://community.esri.com/t5/experience-builder-custom-widgets/go-back-or-forward-to-previous-extents/m-p/1322090#M96</link>
      <description>&lt;P&gt;This is a general purpose back/forward button set to go in a map widget. This widget will track any time a map extent is changed by a source other than itself and provide navigation buttons to go back or forward one extent or to either end of the list. It uses the same css class as the standard ESRI map buttons to blend in with the other map buttons. The buttons and their tooltips will disable themselves appropriately based on how many extents have been recorded and what extent the user is viewing.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JeffreyThompson2_0-1692884326376.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/79037i23E933B88819B076/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JeffreyThompson2_0-1692884326376.png" alt="JeffreyThompson2_0-1692884326376.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Aug 2023 13:38:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/experience-builder-custom-widgets/go-back-or-forward-to-previous-extents/m-p/1322090#M96</guid>
      <dc:creator>JeffreyThompson2</dc:creator>
      <dc:date>2023-08-24T13:38:56Z</dc:date>
    </item>
    <item>
      <title>Re: Go Back or Forward to Previous Extents</title>
      <link>https://community.esri.com/t5/experience-builder-custom-widgets/go-back-or-forward-to-previous-extents/m-p/1338208#M102</link>
      <description>&lt;P&gt;To make this widget ignore horizontal only extent changes (like those triggered by a sidebar opening or closing), add the following line just before if (firstLoad.current) {.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;// Check the extents against the new extent. Must check corners as comparing objects will always result in false.
let extentChanged = false
if (newExtent.xmax !== node.current.value.xmax || newExtent.ymax !== node.current.value.ymax || newExtent.xmin !== node.current.value.xmin || newExtent.ymin !== node.current.value.ymin) {
    //console.log('extent change')
    extentChanged = true
}

// If only x values are change or there are no extent changes, do not log an extent change. 
if ((newExtent.xmax !== node.current.value.xmax || newExtent.xmin !== node.current.value.xmin || !extentChanged) &amp;amp;&amp;amp; newExtent.ymax === node.current.value.ymax &amp;amp;&amp;amp; newExtent.ymin === node.current.value.ymin) {
   //console.log('only x changed or no change')
   fromButtons.current = true
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Switch x's and y's to make it ignore a vertically opening sidebar.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2023 17:23:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/experience-builder-custom-widgets/go-back-or-forward-to-previous-extents/m-p/1338208#M102</guid>
      <dc:creator>JeffreyThompson2</dc:creator>
      <dc:date>2023-10-23T17:23:07Z</dc:date>
    </item>
    <item>
      <title>Re: Go Back or Forward to Previous Extents</title>
      <link>https://community.esri.com/t5/experience-builder-custom-widgets/go-back-or-forward-to-previous-extents/m-p/1340542#M114</link>
      <description>&lt;P&gt;I think there might be an issue with the code to stop recording sidebar movements.&amp;nbsp; I get an error saying that extentChanged is not valid.&amp;nbsp; I don't see it referenced anywhere else in the file.&lt;/P&gt;&lt;P&gt;I just downloaded the widget with the above link.&amp;nbsp; Maybe there is a newer version?&lt;/P&gt;&lt;P&gt;Otherwise the widget works great.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2023 16:09:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/experience-builder-custom-widgets/go-back-or-forward-to-previous-extents/m-p/1340542#M114</guid>
      <dc:creator>shodge_fsu</dc:creator>
      <dc:date>2023-10-23T16:09:40Z</dc:date>
    </item>
    <item>
      <title>Re: Go Back or Forward to Previous Extents</title>
      <link>https://community.esri.com/t5/experience-builder-custom-widgets/go-back-or-forward-to-previous-extents/m-p/1340589#M115</link>
      <description>&lt;P&gt;I left off another if statement necessary for the sidebar ignoring logic. Edited the code block above.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2023 17:25:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/experience-builder-custom-widgets/go-back-or-forward-to-previous-extents/m-p/1340589#M115</guid>
      <dc:creator>JeffreyThompson2</dc:creator>
      <dc:date>2023-10-23T17:25:24Z</dc:date>
    </item>
    <item>
      <title>Re: Go Back or Forward to Previous Extents</title>
      <link>https://community.esri.com/t5/experience-builder-custom-widgets/go-back-or-forward-to-previous-extents/m-p/1340603#M116</link>
      <description>&lt;P&gt;Perfect!&amp;nbsp; Thanks for the speedy fix!&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2023 18:08:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/experience-builder-custom-widgets/go-back-or-forward-to-previous-extents/m-p/1340603#M116</guid>
      <dc:creator>shodge_fsu</dc:creator>
      <dc:date>2023-10-23T18:08:11Z</dc:date>
    </item>
    <item>
      <title>Re: Go Back or Forward to Previous Extents</title>
      <link>https://community.esri.com/t5/experience-builder-custom-widgets/go-back-or-forward-to-previous-extents/m-p/1362330#M168</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;If i add it to the Dev edition exp builder it works fine but if i host it in portal then add it to the app inside the portal's exp builder if throws failed to load error and also not able to select map from the properties. Any thoughts? I am using 1.12/13 Exp builder version&lt;/P&gt;</description>
      <pubDate>Mon, 18 Dec 2023 23:10:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/experience-builder-custom-widgets/go-back-or-forward-to-previous-extents/m-p/1362330#M168</guid>
      <dc:creator>RachappaBellappa1</dc:creator>
      <dc:date>2023-12-18T23:10:08Z</dc:date>
    </item>
    <item>
      <title>Re: Go Back or Forward to Previous Extents</title>
      <link>https://community.esri.com/t5/experience-builder-custom-widgets/go-back-or-forward-to-previous-extents/m-p/1362483#M169</link>
      <description>&lt;P&gt;I'm not sure. I haven't tried hosting a widget on Enterprise. My first guess would be compatibility issues between your version of Enterprise and the version of the widget.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/experience-builder/guide/release-versions/" target="_blank"&gt;https://developers.arcgis.com/experience-builder/guide/release-versions/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;It is marked in manifest.json as Experience Builder version 1.11, so it might not be accepted by Enterprise versions before 11.2. It should be backwards compatible to 1.9 if you want to try changing that, but there is a key Javascript API method that may not be fully compatible with Enterprise 11.0.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Dec 2023 13:57:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/experience-builder-custom-widgets/go-back-or-forward-to-previous-extents/m-p/1362483#M169</guid>
      <dc:creator>JeffreyThompson2</dc:creator>
      <dc:date>2023-12-19T13:57:31Z</dc:date>
    </item>
    <item>
      <title>Re: Go Back or Forward to Previous Extents</title>
      <link>https://community.esri.com/t5/experience-builder-custom-widgets/go-back-or-forward-to-previous-extents/m-p/1401611#M271</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have added your Go Back or Forward to previous extents widget to my ExpBldr site and it works great, this is really needed as my users have that functionality in WAB.&amp;nbsp; The widget works flawlessly on my local development box, but trying to download the .Zip file to port it over to an IIS server fails.&amp;nbsp; If i remove this widget, the export to .Zip works as expected.&amp;nbsp; I am using Exp Bldr V1.14 now and am wondering if this widget needs to be, or could be updated to the latest release in order to complete the download of the .Zip file.&amp;nbsp; Thank you for this great widget, hoping i can deploy this in my Apps.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Mar 2024 18:22:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/experience-builder-custom-widgets/go-back-or-forward-to-previous-extents/m-p/1401611#M271</guid>
      <dc:creator>PatWalker</dc:creator>
      <dc:date>2024-03-27T18:22:07Z</dc:date>
    </item>
    <item>
      <title>Re: Go Back or Forward to Previous Extents</title>
      <link>https://community.esri.com/t5/experience-builder-custom-widgets/go-back-or-forward-to-previous-extents/m-p/1401901#M273</link>
      <description>&lt;P&gt;Experience Builder 1.14 should have back/forward buttons built in to the Map Widget, so this widget really isn't necessary anymore.&lt;/P&gt;&lt;P&gt;I can't really explain why it's not working for you. I assume you are following the standard steps of unzipping the downloadable folder to your-extensions/widgets, adding the widget to your Experience, saving and then publishing and downloading.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Mar 2024 12:40:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/experience-builder-custom-widgets/go-back-or-forward-to-previous-extents/m-p/1401901#M273</guid>
      <dc:creator>JeffreyThompson2</dc:creator>
      <dc:date>2024-03-28T12:40:19Z</dc:date>
    </item>
    <item>
      <title>Re: Go Back or Forward to Previous Extents</title>
      <link>https://community.esri.com/t5/experience-builder-custom-widgets/go-back-or-forward-to-previous-extents/m-p/1504452#M343</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;I'm new to using this forum, but wanted to confirm with you if it is alright to use this as a consultant building experience builder applications on a state's portal?&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jul 2024 20:10:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/experience-builder-custom-widgets/go-back-or-forward-to-previous-extents/m-p/1504452#M343</guid>
      <dc:creator>TrystanJasperson</dc:creator>
      <dc:date>2024-07-11T20:10:35Z</dc:date>
    </item>
    <item>
      <title>Re: Go Back or Forward to Previous Extents</title>
      <link>https://community.esri.com/t5/experience-builder-custom-widgets/go-back-or-forward-to-previous-extents/m-p/1504460#M344</link>
      <description>&lt;P&gt;Any widgets in this group are free to use for any purpose. You don't owe my any credit or acknowledgement, but it would be pretty rude if you tried to explicitly pass my work off as your own. Please don't remove my name or the City of Arlington from the manifest.json.&lt;/P&gt;&lt;P&gt;Thanks for asking.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jul 2024 20:29:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/experience-builder-custom-widgets/go-back-or-forward-to-previous-extents/m-p/1504460#M344</guid>
      <dc:creator>JeffreyThompson2</dc:creator>
      <dc:date>2024-07-11T20:29:10Z</dc:date>
    </item>
  </channel>
</rss>

