|
IDEA
|
Any updates on this? @DerekLaw had a direction to this post from this question. https://community.esri.com/t5/arcgis-monitor-questions/does-arcgis-monitor-2025-1-1-has-the-ability-to/m-p/1678855#M3209
... View more
01-20-2026
03:26 PM
|
0
|
0
|
789
|
|
IDEA
|
This request would be when right clicking or accessing the Geocoding Tools toolbox, have an option to import/export locator settings. This would allow a more streamlined approach when having to create a locator at a new location. For example, I am moving locator files from one server to another, and currently I have to create the locator manually. I tried the Export XML Workspace Document geoprocessing tool, but it failed stating that a locator is an invalid dataset type. This would cover all properties and all settings: About the locator input fields Participating locators Result order Performance
... View more
01-20-2026
10:06 AM
|
1
|
0
|
264
|
|
BLOG
|
@AdamGebhart correct, these get run on the client folder.
... View more
01-20-2026
08:50 AM
|
0
|
0
|
3406
|
|
BLOG
|
Hi @KeyHunter , Thank you for feedback. I replied to the PM, and can update this post once we correspond there. At this point, changing field orders in the settings should not be possible within the settings. I have my field order configured at the published service level from Pro to Enterprise.
... View more
01-16-2026
12:13 PM
|
0
|
0
|
2290
|
|
POST
|
Are you publishing through ArcGIS Pro as a hosted layer? If so, would changing the settings under the Configuration Parameters help to specify the time zone?
... View more
01-15-2026
10:23 AM
|
0
|
1
|
557
|
|
POST
|
Hello @RandyKreuziger1, you can and it would the file path "C:\Users\your user name\AppData\Roaming\Esri\ArcGISPro\Favorites\connection name.sde"
... View more
01-15-2026
10:11 AM
|
0
|
0
|
430
|
|
BLOG
|
Hello @JasonCityOfTacoma, currently we don't have a GitHub repo. I have been wanting to get a repo for several custom widgets onto GitHub. We may be having an update in the near future and posting on this blog. After that, I will probably look into a GitHub repo to get downloads onto as well. Thank you, Brian
... View more
01-13-2026
07:19 AM
|
2
|
0
|
5544
|
|
BLOG
|
The Basemap Gallery Custom widget provides some additional functionality from the out of the box Basemap Gallery widget to give developers more customization. https://github.com/brianmcleer/basemap-gallery-custom-widget - Display items in thumbnail or list options - 5 size settings for list/thumbnails - Import/Export XML files to transfer widget settings across applications - Change order of basemaps in list - Set default basemap for application load - WCAG compliance
... View more
01-07-2026
09:22 AM
|
2
|
2
|
623
|
|
BLOG
|
Thank you @adamsimple and @KevinHitchcock for reporting both of these issues. We will look at both of these and try to resolve them soon.
... View more
01-06-2026
03:47 PM
|
0
|
0
|
5624
|
|
DOC
|
Thank you @KevinHitchcock for the positive feedback. I can look at adding the 2 enhancement requests down the road. I can in particular see the remove duplicates as being useful.
... View more
01-06-2026
12:02 PM
|
0
|
0
|
9277
|
|
BLOG
|
Thank you @eMosby. I did a minor update before the holidays and the ZIP must not have saved. It should be in the article now.
... View more
01-05-2026
07:18 AM
|
1
|
0
|
3522
|
|
POST
|
I don't have a script that creates nested group layers, but I have one that updates pop-ups in webmaps. These snippets may be of use. I have webmaps that have group layers nested 2 or 3 levels down. def find_target_group_layer(layers: List[Dict[str, Any]], target_name: str) -> Optional[Dict[str, Any]]:
"""
Find the target group layer by name, searching recursively if needed.
Args:
layers: List of layer dictionaries to search
target_name: Name of the group layer to find
Returns:
The target group layer dictionary if found, None otherwise
"""
logger.info(f"Searching for target group layer: '{target_name}'")
for layer in layers:
# Check the title first
layer_title = layer.get("title", "")
if layer_title == target_name:
logger.info(f"[SUCCESS] Found target group layer: '{target_name}'")
return layer
# If this is a group layer, search its nested layers
if "layers" in layer and layer["layers"]:
result = find_target_group_layer(layer["layers"], target_name)
if result:
return result
logger.warning(f"[WARNING] Target group layer '{target_name}' not found")
return None def process_layers_recursive(layers: List[Dict[str, Any]], layer_name_map: Dict[int, str],
layer_path: str = "") -> int:
"""
Recursively process all layers, including nested layers within group layers.
Args:
layers: List of layer dictionaries to process
layer_name_map: Mapping of layer IDs to names
layer_path: String representing the current path (for logging)
Returns:
Count of layers successfully updated
"""
updated_count = 0
for layer in layers:
layer_title = get_layer_name(layer, layer_name_map)
full_path = f"{layer_path}/{layer_title}" if layer_path else layer_title
# Check if this is a group layer with nested layers
if "layers" in layer and layer["layers"]:
logger.info(f"Found group layer: {full_path} with {len(layer['layers'])} nested layer(s)")
# Recursively process nested layers
nested_count = process_layers_recursive(layer["layers"], layer_name_map, full_path)
updated_count += nested_count
else:
# This is a regular layer, update its popup
if update_layer_popup(layer, layer_name_map, layer_path):
updated_count += 1
return updated_count
... View more
12-23-2025
09:46 AM
|
0
|
0
|
1151
|
|
BLOG
|
Thank you for the alternative solutions and blog post. This is very helpful for identify Enterprise Database Database Sequences.
... View more
12-19-2025
03:02 PM
|
0
|
0
|
496
|
|
IDEA
|
This blog post was posted recently https://community.esri.com/t5/data-management-blog/view-properties-of-database-sequences/ba-p/1657180/jump-to/first-unread-message
... View more
12-19-2025
03:01 PM
|
0
|
0
|
1330
|
|
POST
|
The Spacing setting does not allow for negative numbers, I wonder if modifying this in the widget code would allow to reduce spacing more.
... View more
12-15-2025
08:21 AM
|
0
|
0
|
741
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 13 hours ago | |
| 4 | yesterday | |
| 4 | Thursday | |
| 2 | Wednesday | |
| 1 | a week ago |
| Online Status |
Online
|
| Date Last Visited |
3 hours ago
|