|
POST
|
Support ticket submitted to add support to the listed Bug and Enhancement requests above! UPDATE: Response from Esri Support (Australia) below. The slower performance observed in the Edit widget was attributed to querying all layers within the associated Web Map. This issue aligns with a previously identified defect (ENH-000175894), which was addressed in the ArcGIS Online June update. However, similar behaviour has been reported again in this case and a few others. As a result, a new defect has been logged to formally recognise this recurring issue with the Edit widget in Experience Builder. ENH-000178405 - Allow the Edit widget of ArcGIS Experience Builder application to load faster.
... View more
08-20-2025
05:14 PM
|
0
|
0
|
308
|
|
POST
|
Good work figuring it out. Sometimes, it's all down to how you phrase a question! Especially with so many similar terms in use across so many platforms and language groups.
... View more
08-17-2025
05:20 PM
|
1
|
0
|
504
|
|
POST
|
Have you tried Searching in the Attribute Table? Open the attribute table > click on the field you want to search > Ctrl + F > enter search term > Enter. Can then select all matching features returned if desired. Also, I assume you are currently using the Locate function like this? From what I can see, there is no way of changing this to the default setting unfortunately.
... View more
08-12-2025
12:30 AM
|
0
|
0
|
192
|
|
BLOG
|
@AlfredBaldenweck Yes! You're right! It could be made even simpler and more versatile. I'll update the original post to reflect this. This is in fact what I had hoped to achieve in the first instance. Thanks for the prod.
... View more
08-11-2025
07:24 PM
|
0
|
0
|
355
|
|
BLOG
|
I've been working on a problem lately, and discovered that there was no out-of-the-box way to achieve this. In short, I have 2 feature classes going into a Spatial Join, but the fields in those feature classes could change each time the model is run. The issue here is that the Field Map in the Spatial Join tool is static, and can only be updated by editing the model, running up to the Spatial Join, opening the Spatial Join parameters and resetting the Field Map to include additional fields, or remove those no longer present in the input datasets. This is obviously not ideal - Model Builder should be able to deal with this. Enter python script tools! With a bit of help from a certain AI that everyone seems to know of, I quickly had a python script that when loaded into a python script tool, would take the Target feature class and Join feature class (or as many input datasets as required), iterates through the fields in each and adds them to a Field Mappings object. This Field Mappings object is then passed as an output of the script tool and as an input Field Mappings parameter to the Spatial Join. This then dynamically updates the Field Map of the Spatial Join every time the model is run. Configuring the parameters of the python script to accept the multiple input datasets and output Field Mappings object, this tool was ready to be added to my model. In short, I now have a reusable tool that when added to any model, will generate a new Field Map for any GP tool that requires it (e.g. Export Features) import arcpy
# Get semicolon-delimited input feature layers
input_features = arcpy.GetParameterAsText(0)
# Split into a list of layers
layers = input_features.split(";")
# Create FieldMappings object
field_mappings = arcpy.FieldMappings()
# Add fields from all input layers
for layer in layers:
fields = arcpy.ListFields(layer)
for field in fields:
if field.type not in ['Geometry', 'OID']: # Skip geometry and object ID fields
field_map = arcpy.FieldMap()
field_map.addInputField(layer, field.name)
field_mappings.addFieldMap(field_map)
# Set output parameter (derived)
arcpy.SetParameter(1, field_mappings) This approach could be used to work with any tool that requires a Field Map (e.g. Export Features). Next time you have a problem with tools in Model Builder not quite doing what you need, fire up ChatGPT, Copilot or another AI helper and ask it how to make your process happen. Check the code it provides thoroughly because they do make mistakes, but it's a great way to get into the coding space when you just don't quite know where to start. ***Update*** - since originally posting this, I have simplified it as I had made things more complex that necessary. Also another risk with the AI helpers. They don't always point out that there may be easier ways of achieving a problem as they tend to focus on the problem through the narrow lens of the prompts you entered. Always ask if a solution can be streamlined or done with fewer steps.
... View more
08-11-2025
12:40 AM
|
3
|
2
|
810
|
|
POST
|
I believe so. I have my browser set to Clear cookies automatically on close. I personally never saw the issues and pretty sure it has cleared it on others machines too. I actually started using this setting to fix cookie issues with Community and other Esri things in the past.
... View more
07-22-2025
10:21 PM
|
0
|
0
|
1337
|
|
IDEA
|
I think this a is good idea. It could be integrated into the Offline compatibility check function which flags errors based on layer settings. Shows an Error or tick the "Exclude from Offline downloads" box and errors are ignored (or downgraded but still shown for visibility).
... View more
07-22-2025
10:10 PM
|
0
|
0
|
445
|
|
POST
|
When you say you've set it to use right and not left, are you aware that it determines this based on the direction the line was created (and not the fact that there is a second line next to it)? In the below example, both lines have been created from the bottom up (last vertex is the red one). In a network dataset in a field called CWY, the one of the left was attributed as "Left" and the one on the right as "Right" (and any that are bidirectional as "Single"), you would set your 'One-way' Restriction as Prohibited with the below properties: If your data is not created consistently in terms of direction, you won't be able to setup the restrictions properly. If it is already setup with the direction of the lines running in the correct direction for the roads (e.g. the below) then you can implement a simpler restriction based on just the "Single" value (no right or left needed).
... View more
07-16-2025
05:47 PM
|
1
|
0
|
291
|
|
IDEA
|
In case you're not aware, if you have already created your Definition Queries, you can swap between them without opening the Properties box from the Data ribbon of the selected Layer.
... View more
07-16-2025
05:25 PM
|
0
|
0
|
723
|
|
POST
|
What about setting a Minimum/Maximum Scale for the layer? This way, it hides the layer when you're working unless you zoom in/out to a point within the range of scales you set, but it is still technically turned ON so you can paste features into it.
... View more
07-16-2025
05:21 PM
|
2
|
0
|
469
|
|
IDEA
|
Have you considered creating a new index layer for the Map Series by doing a dissolve of your parcel data by landowner? It's not ideal, and I think your Idea has merit, but it may work better than the Bookmark option (it's how I drive some of our Map Series). The index layer doesn't need to be visible in the map.
... View more
07-15-2025
06:11 PM
|
0
|
0
|
250
|
|
POST
|
Worth checking that there aren't inconsistencies with symbology (do you have All other values turned on) and that there are no definition queries. Beyond these tips, I can only recommend sharing more (e.g. screenshots or a package) so that we can make better guesses on where the issue might lie.
... View more
07-13-2025
05:55 PM
|
0
|
0
|
1221
|
|
POST
|
Glad you found it useful and managed to adapt it to your needs!
... View more
07-13-2025
05:37 PM
|
0
|
0
|
1144
|
|
POST
|
Have you moved any layers about in your contents pane? I've noticed that tends to reset the masking so check that all the masking settings are still applied as intended.
... View more
07-11-2025
05:45 AM
|
0
|
0
|
175
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | a week ago | |
| 1 | 08-24-2025 06:11 PM | |
| 1 | 4 weeks ago | |
| 1 | 10-08-2024 09:01 PM | |
| 1 | 06-05-2025 12:17 AM |
| Online Status |
Online
|
| Date Last Visited |
yesterday
|