|
POST
|
Hi @JohnEvans6 , I add a filter in my script and it looks good in the table widget. Could you share your data and script with me? Thanks, Shengdi
... View more
07-14-2025
06:48 PM
|
0
|
3
|
3120
|
|
POST
|
Hi @NicoleJohnson , 1 – When the page loads, all Arcade expressions on that page are evaluated at once, which can use a lot of resources. This limitation is in place to help maintain performance and avoid potential bugs. 2 – It’s a bit tricky to remove this limitation, a workaround is to use HTML format and keep just one Arcade expression per text widget. That should help reduce the overall number. 3 – That last one is a bug and will be fixed in the next release. Regards, Shengdi
... View more
07-10-2025
08:05 PM
|
1
|
1
|
1485
|
|
POST
|
Hi, you should be able to see that option if you disable the Result panel.
... View more
07-09-2025
06:26 PM
|
0
|
0
|
566
|
|
POST
|
Hi @dhan , When using the Search widget with “Add custom search sources”, you can choose to redirect search results to a non-modal window under the General search options > Search result section. This provides a similar effect to the standard result list, but there are a couple of limitations to be aware of: No maximum record count setting for output data sources – This means if you have multiple locator sources, using separate list widgets for each one may lead to overly long result displays. While a Table widget with multiple sheets can handle this, it may not be as intuitive for users. No built-in way to close the window when the search is cleared – At the moment, the window will remain open even after the search is cleared. Regards, Shengdi
... View more
07-09-2025
01:21 AM
|
0
|
0
|
602
|
|
POST
|
Hi @vijaybadugu @ClintOffutt1 , This bug should be fixed by today's update. Please let me know if you can still reproduce it. Thanks, Shengdi
... View more
07-08-2025
06:46 PM
|
0
|
0
|
687
|
|
POST
|
Thanks @EdwardMcFarlin , this bug should be fixed by today's update.
... View more
07-08-2025
12:58 AM
|
1
|
4
|
2088
|
|
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
|
941
|
|
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
|
1049
|
|
POST
|
For Enterprise, this feature will be available on 12.0.
... View more
07-03-2025
06:15 PM
|
0
|
0
|
1366
|
|
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
|
744
|
|
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
|
586
|
|
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
|
517
|
|
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
|
1649
|
|
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
|
1685
|
|
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
|
1803
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | a week ago | |
| 1 | 2 weeks ago | |
| 1 | 05-07-2026 01:53 AM | |
| 1 | 05-24-2026 08:02 PM | |
| 1 | 04-23-2025 06:55 PM |
| Online Status |
Offline
|
| Date Last Visited |
Thursday
|