Select to view content in your preferred language

Missing a vertical scroll in a new Popup (4.28)

1580
5
Jump to solution
10-24-2023 04:03 AM
MatejVrtich
Esri Contributor

Hi,

regarding the Popup Design updates in version 4.28, if the content of the popup is higher than the map, there is no vertical scrolling in the popup.

Here is the comparison in 4.27 vs 4.28:

MatejVrtich_0-1698145327425.png

MatejVrtich_1-1698145340476.png

Regards,

Matej

 

1 Solution

Accepted Solutions
AnneFitz
Esri Regular Contributor

We have fixed this bug in a patch for 4.28. If you're using @ArcGIS/core - this bug fix is available on version 4.28.1. The CDN should be updated in a few hours. Thanks! 

View solution in original post

5 Replies
JonathanDawe3
Occasional Contributor

Hi, 

I've just spotted this as well. As a temporary fix add the following styling override in your application: 

 

/* WARNING Required to fix broken Esri Styling */
.esri-features.esri-widget.esri-widget--panel {
overflow: hidden;
}
MatejVrtich
Esri Contributor

Thanks for sharing, however this is not applicable for ArcGIS apps using the Popup widget, like Map Viewer, Dashboards, etc.

 

Justin_Greco
Frequent Contributor

Try adding this to your fix as well, that will make the popup content scrollable.

.esri-features.esri-widget.esri-widget--panel calcite-flow{
  overflow: auto;
}

 

AnneFitz
Esri Regular Contributor

We have fixed this bug in a patch for 4.28. If you're using @ArcGIS/core - this bug fix is available on version 4.28.1. The CDN should be updated in a few hours. Thanks! 

DanRussell
Occasional Contributor

Hi Anne! Is there a place where developers can see the a summary of patch-level changes to the ArcGIS JS SDK?

The release notes for 4.28 are an overview of the minor-level release: https://developers.arcgis.com/javascript/latest/4.28/ 

But... there's no place to find the difference between 4.28.0 and 4.28.1, for example.

Your comment on this post is one of the few pieces of evidence online of any specific changes made in a patch-level version.

Version 4.28 has had several patch-level releases all the way up to 4.28.10, and there's no way to see detail of the incremental changes.  (The increments themselves can be found in the package version history: https://www.npmjs.com/package/@arcgis/core?activeTab=versions ).

The SDK is not open-source, and is only provided in minified code, so it's not easy for someone to even do a code comparison to glean the changes from patch to patch.

Is there a resource you can point me to that enumerates those changes at the patch level?

Thank you!