|
POST
|
Hi @JonJones1 , you can edit points in Experience Builder using the Map widget and the Edit widget together.
... View more
01-05-2024
05:54 AM
|
1
|
1
|
2236
|
|
POST
|
@YS2388 Just wanted to let you know that with the upcoming fix for this, the smart form title will be displayed at the top of the form (in the example below the smart form title is "Asset ID: 1674"), but the display field will still be shown in the header next to the back button. This is a known limitation for now.
... View more
01-04-2024
08:35 AM
|
0
|
1
|
1483
|
|
POST
|
Hi @mtebbe , Right now there is a known limitation in the Edit widget where editing a layer in Attribute only mode does not support attachments. We apologize for this inconvenience.
... View more
01-04-2024
06:58 AM
|
1
|
3
|
4025
|
|
POST
|
Hi @HanliePetoors , Right now there is a known limitation in the Edit widget where editing a layer in Attribute only mode does not support attachments. We apologize for this inconvenience.
... View more
01-04-2024
06:58 AM
|
0
|
1
|
3055
|
|
POST
|
Here's an approach that may work for what you are trying to achieve: Use the filtered value as a default field value - Esri Community Basically, you would need one layer from which to pull the value (e.g. Incident ID or Name). That layer could be populated with new values as needed. Using a Filter, you would define which value to use for the current incident, and using the expression shown in the blog, you will be able to automatically populate the incident ID value into all the features you create after applying the filter. I hope this makes sense, I'll try to clarify if it doesn't but hopefully, the samples provided in the blog will help...
... View more
12-29-2023
01:31 PM
|
2
|
1
|
3747
|
|
BLOG
|
Topic – Migrating from Web AppBuilder to Experience Builder The Smart Editor widget in Web AppBuilder provides a variety of configuration options to save time for editors by enforcing data integrity with field conditions and automating the calculation of field values. Much of this functionality is now available through Smart Forms. To learn more, check out this blog: From the Smart Editor to Smart Forms The functionality we describe in this blog belongs to very specific workflows and we thought it may deserve a dedicated post. In Web AppBuilder In Web AppBuilder, you can set up an interaction between the Group Filter widget and the Smart Editor widget to use the filtered value as a default value for attribute fields when you create new features. As illustrated in the example app below, when a user filters features from the Event map to view a specific event, the event name value will be automatically populated into the Event identifier field for any new features they create for that event. This option can be enabled in the Smart Editor widget General Settings, along with setting up Preset Attribute Actions and proper filters in the Group Filter widget. In Experience Builder To recreate this functionality in Experience Builder, you’ll need to configure Forms in Map Viewer for your editable layers. Add a calculated expression to the form using Arcade to calculate and populate data automatically. Follow these steps with this sample map to view an example: 1. In Map Viewer, apply a new Filter Expression on the Filtered Layer for one of the values (e.g., value 5 below). 2. Then, use the Edit tool to add a new feature for the Editable Layer. Notice how the value from the remaining feature (value 5, in the example above) is written into the field automatically. How was this achieved? Let’s take a look at the Form: 3. Open the Forms configuration for the Editable Layer. 4. For the Value from filter field you'll see a Calculated expression is set. 5. Click the gear and Edit Arcade to view and modify the expression. 6. For an expression using your own layers in your own web map, you'll need to replace the elements underlined in red and blue below. Red: the layer and field the filtered value is coming from. Blue: the target field for the filtered value in the target layer (this is the one for which you are configuring the Form). Here's the code snippet: function getValue() {
// Define which layer and field to grab the value from
var queryLayer = FeatureSetByName($map, "Filtered Layer", ["Value_to_filter"], false);
// Return the value from the first feature returned when querying that layer
var firstFeature = First(queryLayer);
if (IsEmpty(firstFeature))
return null; // Layer is empty.
return firstFeature["Value_to_filter"];
}
// Only perform this calculation when a new feature is created
if ($editContext.editType == "INSERT" && $feature.Value_from_filter == null) {
return getValue()
} else {
// When the feature is updated, return the existing value in this field
// and do not calculate a new value
return $feature.Value_from_filter
} Note: this will only work as expected if a filter is applied. If no filter is applied, an unexpected value may be populated. Once you've set the Calculated expression in the Map Viewer using the Forms, this logic will also work when using this web map in Experience Builder with the Filter and Edit widgets. Check out this application example: We must all thank @ChrisDelaney for coming up with this approach!
... View more
12-29-2023
01:26 PM
|
5
|
6
|
4064
|
|
POST
|
Hi @ScottHansen__MDP_ , Any chance you'd be able to share your web map or app with us so we can take a look? You can reach out directly at [email protected] Thank you!
... View more
12-19-2023
10:17 AM
|
0
|
0
|
2386
|
|
POST
|
@Arsha_AmirantiIt looks like you should be able to rename the layer from the Data tab:
... View more
12-19-2023
09:03 AM
|
2
|
0
|
2860
|
|
POST
|
Hi @MaryElizabethMcQuillan, since this was released with ArcGIS Online in June, you will not see this option if are you in ArcGIS Enterprise 11.1 or earlier.
... View more
12-19-2023
08:40 AM
|
0
|
0
|
6192
|
|
IDEA
|
@rami_shah Where are you using coordinates? Is this for Coordinate Attribute Actions?
... View more
12-18-2023
09:28 AM
|
0
|
0
|
2004
|
|
POST
|
@ChristopherCounsell I have read the case and it describes that the web map was created with ONE View layer added several times to the map with MAP filters applied. I have a feeling that this could be related to the issue. Also not sure how you created your Forms with the calculations (for each copy of the layer separately, or before duplicating the layer?). Not sure if there could be issues with forms as well when the same layer is added to the map. Maybe try to see if creating separate Layer views for each Filter and adding these layers separately to the map, and setting up the Form for each one individually, might resolve the issue? Also make sure to double-check your share and editing settings in the view layer's item Settings. I see some weird behavior when editing a layer added multiple times to the same web map, but it does not appear I was able to recreate the case you described with the information at hand. It looks like the support team has assigned more resources to troubleshoot this, so let's see if they can.
... View more
12-14-2023
10:20 AM
|
1
|
0
|
5200
|
|
POST
|
Hi @ChristopherCounsell do you have the Case or Bug number provided by the technical support team?
... View more
12-13-2023
01:49 PM
|
1
|
2
|
5216
|
|
POST
|
@DavidColey You're correct, it looks like there is a bug with Near Me specifically. We're looking into it. Thank you!
... View more
12-13-2023
07:38 AM
|
1
|
0
|
2247
|
|
POST
|
Hi @YS2388 , looping back to confirm that there is a bug and the form title is not displaying at the top for the Attributes Only case. We're working on fixing it with the coming ArcGIS Online update.
... View more
12-12-2023
07:17 AM
|
1
|
1
|
1526
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | a week ago | |
| 1 | 01-08-2026 09:58 AM | |
| 5 | 03-31-2026 01:39 PM | |
| 4 | 03-03-2026 10:00 AM | |
| 1 | 12-05-2025 11:10 AM |
| Online Status |
Online
|
| Date Last Visited |
Wednesday
|