|
POST
|
After the June 2026 ArcGIS Online update, dashboards that we have built that include Category selectors with multiple zoom targets under Actions cause the dashboard to crash after making a selection. Additional Details: - The offending widget(s) are Category Selectors, with categories from Grouped Values - Under Actions, When selection changes, it is set to Filter 24 targets, and Zoom to 3 targets (the zoom to multiple targets is what's now causing it to break). See screenshot below. - The dashboard uses stacked groups for a "multi-page" look, which is why there are so many filter targets and 3 different web maps (one on each "page") - All of this worked beautifully before the June 2026 update! - Yes, I could remove the Zoom action as a workaround since the Category selector seems to function without it, but that doesn't seem like an acceptable long-term solution, given it's not an unreasonable ask and it worked fine before the update. I will create a support ticket and reference this post, but hoping this improves visibility and others can share if they are experiencing similar behaviors.
... View more
4 weeks ago
|
11
|
5
|
455
|
|
POST
|
Yes! Category selectors in which I have multiple zoom targets set (three different maps) that worked fine before the update now cause my dashboard to crash. Very infuriating how unstable this latest update has been, it's broken some other apps we have as well, and these are actively used by our clients. Update: Including link to my related Esri Community post on this issue: https://community.esri.com/t5/arcgis-dashboards-questions/category-selectors-cause-dashboard-to-freeze-crash/m-p/1711220#M12053
... View more
4 weeks ago
|
1
|
0
|
554
|
|
POST
|
I did something like this with ArcGIS Notebooks, I used admin usage reports and filtered for arcgisprodesktop. Once you get this you can do fancy print statements to print a report in the notebook or export as a CSV in the Notebook's workspace. These are the key lines for getting the report info. # Generate a report for applications
report = agol.admin.usage_reports.applications(time_frame = "90days")
# Filter for ArcGIS Pro usage
arcgispro_report = [entry for entry in report["data"] if entry["appId"] == "arcgisprodesktop"] I didn't have a need to search for extensions but there is likely a similar functionality out there for that.
... View more
4 weeks ago
|
1
|
0
|
216
|
|
POST
|
No I didn't make any changes, just using the default form. I was testing on this layer, editing within this Map Viewer edit interface (screenshot shows a second attempt where I successfully added a word doc)
... View more
4 weeks ago
|
1
|
0
|
355
|
|
POST
|
For what it's worth, I just tried testing this on one of my hosted feature layers and I was able to successfully attach both a JPG and PDF file.... Are you still experiencing the issue today? If so, definitely worth opening a support case with Esri to get it logged as a potential bug
... View more
4 weeks ago
|
0
|
3
|
376
|
|
POST
|
There are a bunch of issues being reported here in the Community related to the June 2026 update. If it's possible, can you create a support ticket and then follow up here? I'm thinking it's probably important to get these things officially logged in their system for them to actually take action, and then other users who report the same issue can be tied to the bug report.
... View more
4 weeks ago
|
0
|
0
|
373
|
|
POST
|
@sosero Is there a bug number associated with this so users can follow the status of the case?
... View more
4 weeks ago
|
4
|
1
|
1099
|
|
POST
|
Oh, that must be what I'm experiencing too! Both fields that are auto calculated are hidden, things like a UUID field and a type assignment that the field user doesn't need to see but are used in data management later. At least that helps pin down a specific cause, thanks @LauraWaddle_-_FS
... View more
a month ago
|
3
|
0
|
1273
|
|
POST
|
Ah yes, all my category selectors appear to be broken and cause the app to crash in a Dashboard that we just demo'd to a client a couple days ago and worked great. This is a problem for Monday Katie...
... View more
a month ago
|
2
|
0
|
1310
|
|
POST
|
I'm having issues with default values not populating in Field Maps. I swear I tested this before releasing and it worked, but now I'm doubting myself so I can't 100% attribute it to this update, but the timing is suspect, for sure... Regardless of my own case, as someone who subscribes to the AGOL board here on the Esri community, I always know when a release has come due to the amount of posts that come in reporting stuff that isn't working anymore. Seems to be the usual trend, which is unfortunate and frustrating
... View more
a month ago
|
2
|
0
|
1827
|
|
POST
|
Quick note on the image fix, I glanced over the attribute table, looks like some contain ampersands as well so you'll want to encode those too (and check for any other unsafe characters). And if you're still seeing white space after that when you would expect an image, inspect the URL for that feature and make sure it's not just returning a 404. Seems like the solution from @timcneil will probably fix your original issue 🙂
... View more
06-24-2026
12:25 PM
|
1
|
0
|
407
|
|
POST
|
Perfect, thanks so much for sharing. A couple things I noticed: When clicking on features, things seemed to be displaying as "intended". You have both the Fields list (showing 9 out of 29 fields) as well as the arcade expression, so two different tables showed in the pop-ups that look identical in formatting. If you only want the formatted table to show, then delete the field list. Also, there was a large amount of whitespace at the top of the pop-up, which I realized was related to the Media (image) that you have inserted. I took a look at the output from your "Public Picture URL" attribute expression, and noticed that the output was a URL with spaces in it (the file names for the photos have spaces in them). I modified the script to handle URL encoding, and then the photos displayed in the pop-ups. if (IsEmpty($feature.Picture_URL) || $feature.Picture_URL == "") {
return null
}
var url = Replace($feature.Picture_URL, "\\", "/")
url = Replace(url, "T:/StoryMaps/", "https://maps.semcog.org/")
return Replace(url, " ", "%20") Hope that helps!
... View more
06-24-2026
11:48 AM
|
2
|
1
|
422
|
|
POST
|
You mention the data is public - are you able to share your web map or at least the data to help with troubleshooting? And also, just getting the silly but simple question out of the way...do you have a Text section added to your pop-up? Even if you have the attribute expression configured and it's returning data successfully in the Arcade editor, you still need to apply it to the pop-up.
... View more
06-24-2026
11:00 AM
|
0
|
1
|
454
|
|
POST
|
Honestly not sure, but I do know I've had a better experience using the newer ArcGIS Assistant (beta) compared to the original ArcGIS Online Assistant Have you tried one version vs the other to see if you get different results/functionality for what you need?
... View more
06-09-2026
07:15 AM
|
0
|
0
|
430
|
|
POST
|
Not sure if this is related, but this reminds me of something I ran into recently where I created an experience builder and had certain layers in the web map have editing disabled, but when I viewed the ExB it still showed them in the editor widget. This was because I'm an admin and so even with editing disabled, I still had edit privileges. Once I viewed the ExB in an incognito browser, it displayed as expected (no option to edit the layers with editing disabled). Could it be a similar permissions related scenario?
... View more
06-03-2026
02:05 PM
|
2
|
1
|
451
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | yesterday | |
| 1 | a week ago | |
| 1 | 3 weeks ago | |
| 4 | 4 weeks ago | |
| 6 | 4 weeks ago |
| Online Status |
Online
|
| Date Last Visited |
yesterday
|