POST
|
Is it still in your recycle bin? Unless you delete it permanently, it will still show up for 14 days.
... View more
06-17-2025
11:39 AM
|
0
|
1
|
227
|
POST
|
Hi, I think it would just be a feature class - Parameter data types in a Python toolbox
... View more
02-12-2025
10:19 AM
|
0
|
0
|
626
|
POST
|
Hi All, I'm upgrading an ExB Dev app from 1.14 to 1.16. I can also recreate this issue in AGOL Experience Builder. I am glad that the attribute table can now interact with the map, it is so much easier to set up and maintain. I'm having trouble with some of the tables appearing empty. I've narrowed this down to layers that have popups configured that don't have the OOTB configuration of a field list. For example, we have a layer that formats the display of attributes using the Text card. In the app, the table is empty but the record count is correct. It's possible to view the data if you use the Show/Hide Columns button but it's quirky - You have to click the "Show Selection" tab and then unselect and reselect each column you want to view. If you close the table or resize the app you have to turn on all of the fields again. We also have a couple of layers that are configured to use the Title card but not show any fields. We get the same empty table behavior. I see why it makes sense for the table widget to honor the visibility of the fields set in the popup but what is the work around for when you want the popups to be customized and the table to be useable? Thanks!
... View more
01-29-2025
11:07 AM
|
1
|
1
|
392
|
POST
|
I cobbled something together that worked for my specific use case. I posted it here - https://community.esri.com/t5/arcgis-experience-builder-questions/custom-widget-output-datasource/m-p/1381931#M10865
... View more
01-15-2025
07:47 AM
|
1
|
0
|
378
|
POST
|
From your first post it looks like UNITID is a string? Have you tried wrapping your where clause value in quotes? concat("UNITID ='", ${UNIT},"'")
... View more
11-18-2024
08:01 AM
|
1
|
0
|
721
|
POST
|
Hi, If I'm understanding correctly, what works for me is to retrieve the location from a feature layer into a hidden field as JSON and then pull out the x and y from that. Does that work for you?
... View more
11-15-2024
09:58 AM
|
1
|
2
|
767
|
POST
|
Hi Sarah, Thanks for the reply. It looks like I am using Survey123 Connect version 3.19.104. If I get a chance I will try your solution. As a workaround, what I ended up doing is denormalizing the records into a hosted csv and searching that. It's not as dynamic as I would like and is one more piece of content to maintain but it allowed me to keep moving forward. Thanks again! Jill
... View more
09-12-2024
10:56 AM
|
0
|
0
|
1047
|
POST
|
Sure, I could do that but why store a value across two fields when I can store it in one? There must be other circumstances where you would want to present a value in a user friendly way in the survey and then store it in a more efficient way. Thanks for your response!
... View more
08-27-2024
12:26 PM
|
0
|
1
|
633
|
POST
|
No, because I'm not storing the feet and inches, I just want to store a single value that combines feet and inches into inches.
... View more
08-27-2024
11:02 AM
|
0
|
3
|
640
|
POST
|
Hi I have a scenario where I allow the user to enter a dimension in feet (max_width_feet) and inches (max_width_inches). I then combine these into a single inches value (max_width) and store that in the feature layer. This is working fine. What I can't figure out is how to populate the feet and inches fields from the max_width field when the user edits a previously submitted survey. If I try and reference max_width in the calculation parameter of max_width_feet and max_width_inches I get the following error: It makes sense to me that a field can't reference a field that references the first field but what is the right way to do this? Is it something to do with calculation mode? Or am I not using default and calculation correctly? Thanks!
... View more
08-26-2024
01:28 PM
|
0
|
5
|
684
|
POST
|
Can someone confirm for me that when searching a hosted feature layer to populate a select_one field appending query request parameters to the REST endpoint does not work in the web app? This limitation is not listed in the documentation but I get pretty funky behaviour. For context, I have a drop down that I want to populate from a hosted feature layer. I need to filter the values based on a previous selection but I need to search multiple fields so I can't use the searchType, searchColumn and searchText parameters. My solution is to query for the relevant records using the where query parameter. So, my appearance column looks like this - w3 autocomplete search(concat("list_town?url=https://services2.arcgis.com/aIrBD8yn1TDTEXoz/ArcGIS/rest/services/Towns/FeatureServer/0/&where=CountyIntersect_1=",${county}," OR CountyIntersect_2=",${county}," OR CountyIntersect_3=",${county}," OR CountyIntersect_4=",${county})) This works great in the Survey123 Connect app. When I look at the request in Fiddler all looks correct and the expected values show up in the drop down. However, when I publish the survey and open it in the web app, I get the following error: It's failing to load because it appears that the where parameter for the request makes no sense. Am I out of luck with this solution or do I need to configure the field differently? Thanks! Jill
... View more
08-22-2024
12:12 PM
|
1
|
3
|
1189
|
POST
|
The relative path worked fine once I declared it as a raw string. Thanks!
... View more
07-29-2024
09:37 AM
|
0
|
0
|
1844
|
POST
|
Hi, Could you duplicate this layer, turn labels on for the second layer and then experiment with map level clipping or some kind of masking? I set up the following in the Map Properties to clip the features of the duplicated label layer to the extent of a feature in my Townships layer. It looks like this on the map - What I don't know if it's dynamic enough to update as you move through a map series. Jill
... View more
07-29-2024
09:34 AM
|
0
|
0
|
695
|
POST
|
I never did solve this problem but changed my workflow. My original script looped through records, parsing a text field into two addresses, geocoding the addresses and then generating a route between them. The output was a polyline feature class of the routes. What I ended up doing is modifying the script to output the addresses as points. I then import those into my route layer as stops and execute all of the routes at once using the Pro tools. All of the routes produced by this workflow follow the true shape of the road network. This works for my purposes. If it comes up again and I can't work around it I will reach out to Support. Thanks!
... View more
06-21-2024
12:04 PM
|
0
|
0
|
982
|
POST
|
@MelindaMorang, thank you for your detailed reply! I went through all of your suggestions and was still not able to identify the issue. My original script looped through records, parsing a text field into two addresses, geocoding the addresses and then generating a route between them. The output was a polyline feature class of the routes. What I ended up doing is modifying the script to output the addresses as points. I then import those into my route layer as stops and execute all of the routes at once using the Pro tools. All of the routes produced by this workflow follow the true shape of the road network. This works for my purposes. If it comes up again and I can't work around it I will reach out to Support. Thanks again!
... View more
06-21-2024
12:02 PM
|
0
|
0
|
726
|
Title | Kudos | Posted |
---|---|---|
1 | 04-21-2023 11:03 AM | |
1 | 08-22-2024 12:12 PM | |
1 | 06-17-2022 08:38 AM | |
2 | 05-23-2023 07:45 AM | |
1 | 01-29-2025 11:07 AM |
Online Status |
Offline
|
Date Last Visited |
2 weeks ago
|