|
POST
|
@sosero Is there a bug number associated with this so users can follow the status of the case?
... View more
06-29-2026
06:54 AM
|
4
|
1
|
1207
|
|
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
06-26-2026
01:12 PM
|
3
|
0
|
1374
|
|
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
06-26-2026
12:54 PM
|
2
|
0
|
1411
|
|
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
06-26-2026
12:40 PM
|
2
|
0
|
1928
|
|
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
|
466
|
|
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
|
481
|
|
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
|
513
|
|
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
|
456
|
|
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
|
474
|
|
POST
|
Honestly, this is one of the places where AI is the most useful/least controversial! haha. Ask ChatGPT to alphabetize the JSON list. Definitely do a thorough review, but still beats manually moving them all around yourself! As for the JSON not showing in ArcGIS Assistant for you....it might be related to how the layer was initially created and published. I seem to remember JSON structures being slightly different for features that were published from Pro vs. created in AGOL directly, but not 100% sure off the top of my head...
... View more
05-14-2026
08:38 AM
|
1
|
0
|
877
|
|
POST
|
Yup! It's in the "Data" section of the feature layer's JSON. Ctrl + F is your friend, search for "domain" and the applicable section should be easy to locate. Also, if you find yourself needing to work with JSON a lot, I've found this free online tool very helpful! (and there are tons of similar ones out there, I'm sure). Copy/paste the JSON into the text view and then you can navigate within "Tree" view to help make sense of it all. https://jsoneditoronline.org/
... View more
05-14-2026
08:04 AM
|
0
|
2
|
900
|
|
POST
|
I don't think there's a GUI option for this, but I would probably approach this by modifying the JSON in the REST endpoint and copy/pasting between layers. You can do this directly in ArcGIS Online, but it's also quite easy to do with ArcGIS Assistant: https://assistant.esri-ps.com/
... View more
05-14-2026
07:44 AM
|
0
|
4
|
908
|
|
POST
|
What symbology did you use when you published the service? My first guess is that it might just be an unsupported symbology type. In the web map, are you able to reassign a different kind of symbology and then it displays in the legend? If you're able to share the hosted layer or fgdb, or at least provide screenshots, that's always helpful for troubleshooting!
... View more
05-13-2026
08:19 AM
|
0
|
1
|
578
|
|
POST
|
@MobiusSnake You. Are. A. LIFE SAVER! I've been monitoring these recent posts from @Bud closely because I have a very similar use-case/issue. In my workflow, I create feature layers with a python script that references a JSON file with the service definition. I only needed to add a slight modification - default value is just "NEWID()" I'll share my workflow/screenshots in case it might help someone: After creating the feature layer, I opened it in a web map and created a feature. At first I was worried because the interface looked like this: But after submitting the form and checking the attribute table, the value was populated!! I'm going to test further to see if I can get this integrated into the app I'm building, but this is huge. I really thought it wasn't possible to do this kind of thing and lots of research didn't turn up anything. Thanks again!
... View more
04-24-2026
05:43 PM
|
2
|
1
|
1464
|
|
IDEA
|
I'll add to this and describe my use-case for a similar functionality, whether it's an integer specifically or a UUID field (which is what I'm using). In my case, we're working with datasets that depend on unique ID's, and we need these maintained for data integrity regarding relationships in external postgres databases. We can't rely on the auto-generated ObjectID's or GlobalID's since those would not be preserved if the layer ever had to be overwritten. Right now, the solution I have is to use a scheduled ArcGIS Online Notebook that scans the dataset every 15 minutes for features that don't have a UUID assigned in our "uniqueID" field and populates it. The downside to this (besides credit usage) is that there is a potential for up to a 15 minute delay of when a user creates a feature in an AGOL app and when it actually displays in the external app I'm building which integrates with the feature layer, since we require that unique ID and don't display features that don't have it assigned yet. It's really a suboptimal solution and would be solved if something like attribute rules or other auto-calculation functionalities were allowed in AGOL feature layers.
... View more
04-24-2026
08:18 AM
|
0
|
0
|
1057
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | a week ago | |
| 1 | 3 weeks ago | |
| 1 | 3 weeks ago | |
| 1 | 2 weeks ago | |
| 2 | 3 weeks ago |
| Online Status |
Offline
|
| Date Last Visited |
Tuesday
|