|
POST
|
Hi @ajohnson , I can confirm this is a bug, thanks for bringing it to our attention. As a temporary workaround, you can go to your organization settings → Utility services, and set the printing service URL to empty. Please let me know if the issue persists after trying this. Thanks, Shengdi
... View more
08-17-2025
07:53 PM
|
0
|
6
|
2007
|
|
POST
|
Hi @DavidHanimann , I tested this on the latest version of Developer Edition but couldn’t reproduce the bug. Could you try reproducing it on ArcGIS Online? Even if it looks similar, the issue might be caused by something else. Shengdi
... View more
08-17-2025
07:27 PM
|
0
|
2
|
593
|
|
POST
|
Hi @Dakshata_Parajuli , From your screenshot and description, it seems you are using a custom print service rather than a custom print template. You can open the Developer Tools → Network tab and check whether any error messages appear in the 'execute' request. In most cases, such issues are related to the print service itself.
... View more
08-17-2025
06:41 PM
|
0
|
0
|
2014
|
|
POST
|
HI @MelanieNeedle , If the layer is not displayed in the legend, it will not be included in the print legend either. If that's not the case, could you send me your map so I can look into it further? Thanks, Shengdi
... View more
08-12-2025
06:50 PM
|
0
|
1
|
153
|
|
POST
|
When adding data via Arcade, the expression needs to return a FeatureSet rather than a single value. Also, since acreage is calculated for each record in the watershed, that calculation should be placed inside the first loop. However, this approach would require a nested loop. Even with filters applied to both the watershed and states layers, this still results in roughly 5,000 geometry calculations. This can make the initial load of the data very slow, and if network conditions are poor, the request may time out. I recommend publishing a new dataset with an additional field for the acreage values. That said, if you’d like to try the Arcade method, here’s a sample script for reference: var p = Portal("https://arcgis.com");
var states = FeatureSetByPortalItem(p, "774019f31f8549c39b5c72f149bbe74e", 0);
var watershed = FeatureSetByPortalItem(p, "42f868d269784624b0a2df9757c34abb", 0);
// Filter states and watershed to New England and New York
states = Filter(states, "STATE_ABBR IN ('ME', 'NH', 'VT', 'MA', 'RI', 'CT', 'NY')")
watershed = Filter(watershed, "states IN ('ME', 'NH', 'VT', 'MA', 'RI', 'CT', 'NY')");
var features = [];
for (var ws in watershed) {
var intersectArea = 0;
for (var st in states) {
intersectArea += AreaGeodetic(Intersection(st, ws), "acres");
}
var acres = Round(intersectArea,2);
Push(features, {
attributes: {
HUC10: ws.huc10,
Acre: acres,
}
});
}
// Define schema for output FeatureSet (no geometry, only attributes)
var schema = {
fields: [{
name: "HUC10",
alias: "HUC10",
type: "esriFieldTypeString"
}, {
name: "Acre",
alias: "Acre",
type: "esriFieldTypeDouble"
}],
geometryType: "",
features: features
};
return FeatureSet(schema); You can try to improve performance by only intersecting each watershed record with the matching state polygon. Thanks, Shengdi
... View more
08-11-2025
11:25 PM
|
0
|
1
|
543
|
|
POST
|
Hi @SarahHurley1 , Both states and watershed are feature sets. The Intersects function can’t take two feature sets directly — the second parameter needs to be a single feature. If you want to do this in Arcade, you’d need a loop like: for (var ws in watershed) {
x = Intersects(states, ws);
} However, there would be a considerable performance issue with approximately 20,000 records in the watershed. If the widget formatting profile supports Geometry bundle, you could use a text widget to show information for a selected watershed instead. That said, Geometry bundle support is still uncertain and not available yet. Thanks, Shengdi
... View more
08-11-2025
02:18 AM
|
0
|
3
|
564
|
|
POST
|
Hi @dsinha , I just tested the app and everything is working fine on our end, as well as for others on the team. I noticed in your screenshot that the request is timing out. Since it’s working normally for others, it’s likely something specific to your environment — possibly a firewall, proxy, or security setting that's blocking the request. Other network activity might still work fine, so issues like this can be easy to overlook. If you have any security software or custom network configurations, it’s worth checking if they might be affecting this particular request. You could also try from a different network or device to help narrow it down.
... View more
08-06-2025
07:26 PM
|
1
|
0
|
523
|
|
POST
|
Hi @dcrGIS_asimm , I can confirm that this is a bug, and we plan to include a fix in the next release of ArcGIS Online. Thanks for letting us know.
... View more
08-06-2025
12:30 AM
|
1
|
1
|
338
|
|
POST
|
Hi @dsinha , "I tested this in an 11.2 environment, and everything is still working as expected on my side. Could you please check the following requests in the Developer Tools > Network tab? From my end, they all return the correct values. Do you see any error messages associated with these two requests on your side? Thanks, Shengdi
... View more
08-05-2025
10:58 PM
|
0
|
2
|
539
|
|
POST
|
Hi @apgis16 , I cannot reproduce the issue on my side. It might be related to something in your data or environment. Please reach out to Support so they can help you reproduce and investigate the issue. Thanks, Shengdi
... View more
08-05-2025
08:08 PM
|
0
|
0
|
743
|
|
POST
|
@TimHaverlandNOAA You're right—the filter function in Arcade only applies within the Arcade expression and does not affect the original data source. Filters applied through other widgets should be synced automatically in Arcade. However, due to some current limitations, you'll need to handle the filtering logic within the Arcade script manually.
... View more
08-05-2025
07:57 PM
|
0
|
0
|
381
|
|
POST
|
Hi @dsinha , which version of Experience Builder are you using? This bug isn't reproducible in the latest ArcGIS Online environment, but it may still be reproducible in an Enterprise environment.
... View more
08-04-2025
06:21 PM
|
0
|
4
|
555
|
|
POST
|
Hi, I tried the locator service and the sample search input you provided, and the search widget works fine on my side: Could you check the settings for the search widget? Specifically, is "only search in current map extent" checked?
... View more
08-03-2025
07:16 PM
|
0
|
6
|
572
|
|
POST
|
Hi @dsinha , I cannot reproduce this bug. Search suggestions don’t display a "No search result" message — they simply show nothing if there are no matches. However, if you press Enter to perform the full search, the "No result" message will appear as expected. If you're still experiencing the issue, could you please share the locator service and a sample search input so I can investigate further? Thanks, Shengdi
... View more
07-31-2025
06:22 PM
|
0
|
0
|
604
|
|
POST
|
Hi @KevincFox_bia , This bug should be fixed. Some outdated content and ExB apps in older versions are still displayed in Google search. From the tests I did, it looks like the page you are concerned about is not showing up anymore. Please let me know if you can still reproduce it. Thanks, Shengdi
... View more
07-30-2025
07:46 PM
|
1
|
0
|
295
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 1 | 07-20-2025 07:42 PM | |
| 1 | 10-29-2025 06:54 PM | |
| 2 | 10-28-2025 01:38 AM | |
| 1 | 10-16-2025 07:01 PM |
| Online Status |
Offline
|
| Date Last Visited |
Thursday
|