POST
|
I have an Experience Builder application where the user can make a selection from a list and that will zoom in to the feature on the map and populate some other panels with information and allow the user to make edits in the Edit widget. There are a few different layers in the map that enable a user to view info in the pop-up just for additional context, but are unrelated to the layer that populates the info and edit widgets. When a user clicks on a feature from a different layer on the map, it clears the selection in the list and the info in various widgets clears until the user clicks on the list item again. Is there a way to disable this feature and allow the user to maintain the selection in the list AND view a pop-up from feature in a different layer? I couldn't figure anything out or find anything online about this.
... View more
Thursday
|
0
|
0
|
98
|
IDEA
|
Just a +1 for this idea! This is really important for our experiences - has anyone found any workarounds for displaying related data with an auto-height for each record?
... View more
03-28-2025
03:25 PM
|
0
|
0
|
146
|
POST
|
I have not found anything to get me started with this and I'm wondering if anyone has any advice or resources about how to access feature layer attachments through the R-ArcGIS Bridge or some other way in R.
... View more
03-06-2025
12:09 PM
|
0
|
0
|
116
|
IDEA
|
This feature would be really nice for our organization as well. We have had to rebuild several Dashboards after needing to duplicate maps or create Dashboards/web maps with slightly different purposes/for different target audiences.
... View more
02-10-2025
09:53 AM
|
0
|
0
|
497
|
IDEA
|
This would be incredibly useful for our organization as well for all the reasons already listed here. We work with vendors who still need Pro projects delivered in v2.9. We also have run into the Enterprise/Pro versioning issues.
... View more
02-05-2025
07:09 AM
|
0
|
0
|
110
|
POST
|
I am upgrading a script that heavily relied on the arcpy.mapping package to work with ArcGIS Pro. I have gotten everything working okay EXCEPT for updating the visible fields in the map layers. I have tried a bunch of different suggestions, but none that have worked. The simplest approach seems to be using Python cim access: https://pro.arcgis.com/en/pro-app/latest/arcpy/mapping/python-cim-access.htm My code runs okay, but when I open my .aprx, none of the fields have been hidden that are supposed to be hidden. Anyone have suggestions? visible_fields = ['list', 'of', 'fields']
aprx = arcpy.mp.ArcGISProject(aprx_path)
map_doc = aprx.listMaps(map_frame_name)[0]
for lyr in map_doc.listLayers():
if arcpy.Describe(lyr).dataType == "FeatureLayer":
print(lyr.name)
# Get the layer's CIM definition - using Pro 2.9
cim_lyr = lyr.getDefinition('V2')
# Make changes to field properties
for fd in cim_lyr.featureTable.fieldDescriptions:
if fd.fieldName not in visible_fields:
fd.visible = False # Do not display this field
# Push the changes back to the layer object
lyr.setDefinition(cim_lyr)
aprx.save()
... View more
01-16-2025
10:10 AM
|
1
|
2
|
302
|
IDEA
|
This would be really helpful for our organization as well!
... View more
01-09-2025
07:55 AM
|
0
|
0
|
183
|
POST
|
For testing, I used a layer that I knew the input coordinate system and added the transformation. I also tried setting the code outside of a context manager. Curiously, the output coordinate system seems to behave as expected if I set the Dissolve Option to "NONE" (Non-Overlapping (rings)), but does not honor the output coordinate system/transformation if the Dissolve Option is set to "ALL" (Overlapping (disks)). This seems buggy to me, but is there any potential explanation for why it would behave this way?
... View more
12-11-2024
08:03 AM
|
0
|
1
|
362
|
POST
|
I have a custom Python Toolbox script. As a part of the Python toolbox, I apply a multi ring buffer and would like the output to be in consistent coordinate system (which happens to be a custom coordinate system) regardless of the input. I am setting the coordinate system with environment manager, but the output is NOT honoring the environment settings and is in the same projection as the input dataset. Here is the code snippet from the larger script: with arcpy.EnvManager(outputCoordinateSystem='PROJCS["alber",GEOGCS["GCS_North_American_1983",DATUM["D_North_American_1983",SPHEROID["GRS_1980",6378137.0,298.257222101]],PRIMEM["Greenwich",0.0],UNIT["Degree",0.0174532925199433]],PROJECTION["Albers"],PARAMETER["false_easting",0.0],PARAMETER["false_northing",0.0],PARAMETER["central_meridian",-78.0],PARAMETER["standard_parallel_1",40.0],PARAMETER["standard_parallel_2",42.0],PARAMETER["latitude_of_origin",39.0],UNIT["Meter",1.0]]'):
multi_buff = arcpy.MultipleRingBuffer_analysis(input_lyr, os.path.join(scratch_gdb, "multi_buff"), [100, 500], "Meters", "distance", "ALL", "OUTSIDE_ONLY", "GEODESIC") Curiously, I also just tested the Multiple Ring Buffer tool in ArcGIS Pro as well. I set the output coordinate system in the environment settings. The output was not consistently projected into the output coordinate system. Sometimes it would be and sometimes it wouldn't be. Does anyone have any insight on this? Thank you!
... View more
12-10-2024
02:18 PM
|
0
|
3
|
422
|
POST
|
I have a select_one question type that pulls in attributes from a feature service. It appeared to be working just fine, but I noticed today, that the search() is not pulling in newly created features. I tried restarting Survey123 and eventually the computer to see if it was just a cache thing, but no luck - many of the newer features are not being pulled into the select_one drop down. Has anyone else dealt with this or have any recommendations?
... View more
10-08-2024
02:23 PM
|
0
|
0
|
295
|
IDEA
|
Stacked repeats would be incredibly useful for our applications! Right now, toggling through repeat entries is incredibly cumbersome. We use a preview table written with HTML as a workaround, but this is a bit clunky and it would be great for users to be able to view and interact with their repeats without having to toggle through them individually.
... View more
10-04-2024
09:05 AM
|
0
|
0
|
413
|
POST
|
I am trying to pull in multiple records that meet some condition from an external feature service layer into a Survey123 form and display a particular attribute for all matching records for the user to view - the attributes are only for reference and will not need to be edited. I have set up several pulldata(@layer) calculations that are working well, but as I understand it, pulldata(@layer) cannot pull multiple records in. I have explored using pulldata(@javascript) with a custom javascript function, but haven't been able to get anything working and am running into token issues. I wanted to check here to see whether there is a way to display the attribute for multiple records and whether there is a good example of this somewhere.
... View more
09-16-2024
09:19 AM
|
0
|
0
|
315
|
POST
|
Hi @Chris3030, I am using the desktop app and creating in Survey123 Connect. After two days, my functions mysteriously started working without changes. I did update my .xlsx to separate the functions as @JenniferAcunto suggested and things seem to be working well now.
... View more
09-13-2024
11:32 AM
|
0
|
0
|
1231
|
POST
|
Mysteriously, everything started working after rebooting two days later without changes. I updated to separate the concat() function from the pulldata() function anyway, as you suggested @JenniferAcunto, and everything seems to be functioning well. Thank you for the tip and hopefully it will make things more stable.
... View more
09-13-2024
11:30 AM
|
0
|
0
|
1235
|
POST
|
I am setting up a survey to use the search() function to query a feature service layer to auto-populate values in a drop down for users to select. I then want other fields to auto-fill attributes in the Survey123 from the feature service layer with the pulldata() calculation. When I set up these functions, the list is empty and the pulldata() function (when tried separately) is also empty. The feature layer is in a referenced feature service hosted on our enterprise portal and the Survey123 form is being built in the same same portal. What am I doing wrong? My search() expression in the appearance option: w2 autocomplete search("site_name_picker?url= https://<enterprise_url>/server/rest/services/PNHP/NHA_EDIT/FeatureServer/0") My pulldata() expression in the calculate option: pulldata("@layer", "getValue", "attributes.nha_join_id", "https://<enterprise_url>/server/rest/services/PNHP/NHA_EDIT/FeatureServer/0",concat("site_name='", ${site_name}, "'")) I've attached photos that show the .xlsx file and the blank drop down list.
... View more
09-10-2024
10:17 AM
|
0
|
5
|
1367
|
Title | Kudos | Posted |
---|---|---|
1 | 01-16-2025 10:10 AM | |
5 | 06-12-2024 08:50 AM | |
2 | 06-13-2024 01:02 PM | |
3 | 07-17-2024 12:24 PM | |
5 | 05-06-2024 07:47 AM |
Online Status |
Offline
|
Date Last Visited |
Tuesday
|