|
POST
|
Hi @JBH , When adding an Arcade script, you'll see some existing code snippets that can help you locate the data source. However, we know that it can still be difficult to determine the correct one from the variables. We're planning to improve this process in the future. Thanks, Shengdi
... View more
07-06-2025
06:42 PM
|
1
|
1
|
902
|
|
IDEA
|
Hi @berniejconnors , Today's update changes the default export behavior to use the spatial reference of the layers. Regarding your idea of adding a "Transform to Web Mercator" checkbox, this seems to be a relatively rare use case at the moment. We'll keep an eye on it and consider the enhancement if more similar requirements come in. Thanks, Shengdi
... View more
07-03-2025
08:36 PM
|
0
|
0
|
1016
|
|
POST
|
For Enterprise, this feature will be available on 12.0.
... View more
07-03-2025
06:15 PM
|
0
|
0
|
1335
|
|
POST
|
@vijaybadugu @ClintOffutt1 Thanks for reporting the bug. I can reproduce this bug and we're looking into it. Shengdi
... View more
07-02-2025
12:00 AM
|
0
|
0
|
708
|
|
POST
|
Hi @bphillips , The text widget supports Arcade expressions in the June 2025 AGOL release. You can connect the text widget to both the point and polygon layers and use a similar script: // SelectedPts is the selected address (Point)
var selectedPts = $dataSources["dataSource_id1"].selectedFeatures;
// If no point is selected
if (Count(selectedPts) == 0) {
return "No features selected."
}
// Specific City Limits (Polygon)
var cityLimits = $dataSources["dataSource_id2"].layer;
var cityPoly = First(cityLimits);
// Check to see if there are any selected features within the polygon.
var insidefeatures = Contains(cityPoly, selectedPts);
if(Count(insidefeatures) > 0) {
return "The selected point falls inside the polygon.";
}
else {
return "No selected point falls inside the polygon.";
} Please let me know if you have other questions. Regards, Shengdi
... View more
07-01-2025
09:41 PM
|
0
|
0
|
554
|
|
POST
|
Hi @MFazio , The text widget supports Arcade expression in the June 2025 AGOL release. You can use a similar script as the following: var fs = $dataSources["dataSource_id"].layer;
var sorted = OrderBy(fs, "date_field DESC");
var fpt = First(sorted);
return fpt.date_field; Thanks, Shengdi
... View more
07-01-2025
09:34 PM
|
0
|
0
|
498
|
|
POST
|
This bug is fixed in today's update. Please let me know if you can still reproduce it.
... View more
07-01-2025
09:12 PM
|
1
|
1
|
1577
|
|
POST
|
Thanks @AnthonyJonesRSK , I can reproduce this bug and we're looking into it. Shengdi
... View more
06-30-2025
08:22 PM
|
1
|
3
|
1613
|
|
POST
|
Hi, we plan to publish a blog with more details about the new Advanced Formatting feature. However, it won’t be available very soon. If you have any questions, feel free to DM me. Regards, Shengdi
... View more
06-30-2025
01:56 AM
|
1
|
0
|
1766
|
|
IDEA
|
@apgis16 You can add Arcade expressions to widgets, but you cannot use Arcade expressions set in the Map Viewer directly in the widgets. This is because the profile Popup supports more variables than the Experience Builder, including $userInput. Additionally, using Arcade expressions with function bundles, such as Geometry, in a list widget can affect performance.
... View more
06-30-2025
12:05 AM
|
0
|
0
|
2052
|
|
POST
|
Hi @SHealy2468 , The text and button widgets support Arcade expression in the June 2025 AGOL release. If you add the text/button widget into a list widget, the Arcade expression should be something like the following: var f = $feature.field_name;
if (IsEmpty(f)) {
return "NO PDF";
}
return f; Thanks, Shengdi
... View more
06-29-2025
11:33 PM
|
0
|
0
|
710
|
|
POST
|
Note that fields used in the widget formatting profile are not automatically added to the used fields list. If you don't use the "quality" field elsewhere, the Arcade script may run incorrectly, resulting in incorrect output.
... View more
06-29-2025
11:15 PM
|
1
|
0
|
1079
|
|
POST
|
Hi @subu , The text widget supports Arcade expression in the June 2025 AGOL release. You can use a similar Arcade script like this: var ds = $dataSources["dataSource_id"].layer;
var queryStr = $dataSources["dataSource_id"].queryParams.where;
if (IsEmpty(queryStr)) {
return "Values not unique.";
}
else {
ds = Filter(ds, queryStr);
var distinctValue = Distinct(ds, 'field_name');
if (Count(distinctValue) > 1) {
return "Values not unique.";
}
else {
return First(distinctValue).field_name;
}
} Thanks, Shengdi
... View more
06-29-2025
08:30 PM
|
1
|
1
|
1091
|
|
POST
|
Hi @AldoBertone , Have you enabled the "Allow others to export to different formats" option in the item settings? Support issue BUG-000174694 has been fixed in Enterprise 11.5, so Experience Builder will now follow the item export settings. Regards, Shengdi
... View more
06-29-2025
07:33 PM
|
0
|
4
|
6287
|
|
POST
|
Hi @AnthonyJonesRSK , I cannot reproduce this bug. It would be very helpful if you could provide a sample app. Thanks, Shengdi
... View more
06-29-2025
07:20 PM
|
0
|
0
|
1660
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-07-2026 01:53 AM | |
| 1 | 05-24-2026 08:02 PM | |
| 1 | 04-23-2025 06:55 PM | |
| 1 | 04-30-2026 02:33 AM | |
| 1 | 05-07-2026 01:38 AM |
| Online Status |
Offline
|
| Date Last Visited |
Thursday
|