|
IDEA
|
After further investigation I realise that this is partly achievable with Accordion within a text box, but it would still be useful to have entire collapsible sections.
... View more
02-01-2021
01:13 AM
|
0
|
0
|
2017
|
|
POST
|
Hi Philip, Thanks for the quick reply. I'll send the form via direct message. The issue has been happening for some time, but is also evident when tested in Connect (v. 3.10.239). Users are generally collecting new surveys. Thanks, Rob
... View more
01-22-2021
02:52 AM
|
0
|
0
|
3697
|
|
POST
|
In the ArcGIS Explorer app I have several maps which are enabled for downloading offline areas. Users can download offline areas without any problems. However, if they return to an area where they are able to work online, they are only able to view the downloaded (offline) portions of the map. These maps are shown in the map list with the Offline area subtext beneath the map title. Is there a way for a single map to be used online and with offline areas downloaded at the same time? At the moment, it seems a user would have to remove all of their offline areas in order to regain access to the full online map. This is not a great workflow as the user would need to keep downloading and removing offline areas depending on their work that day. The only other workflow I can envisage is to have two identical webmaps - one for offline download use and the other always kept without any offline areas for online use.
... View more
01-22-2021
02:40 AM
|
0
|
1
|
1268
|
|
POST
|
Hi @Anonymous User , I am finding some issues with the email field type. My understanding is that this should capture the users email if they are logged in, as described in this article. However in my case I am finding that it is not capturing and storing the user's email at all - it is absent from the field in the feature service. I have further tested this by creating a text field below it and using a calculation (e.g. ${AGOL_email}, where AGOL_email is the name of the field using email fieldtype) but with no results. If I instead try to use the old property approach (i.e pulldata("@property", 'email')) this works and returns the users ArcGIS email. Are there any known bugs with the email field type? The settings I have for my email question are as follows: type = email name = AGOL_email label = Email Many thanks, Rob
... View more
01-21-2021
10:23 AM
|
1
|
2
|
3703
|
|
IDEA
|
I agree this would be extremely useful. For instance, we would like to display a link to our current COVID-19 statement in the banner. With the current functionality, users would have to copy and paste this in to their browser as there is no way of including a link (e.g. using html).
... View more
01-15-2021
07:47 AM
|
0
|
0
|
2408
|
|
POST
|
Hi @XanderBakker, That's fantastic, thank you for the in-depth response. I will give it a try via the $datastore route.
... View more
01-13-2021
04:51 AM
|
0
|
0
|
7866
|
|
POST
|
When I first click a link to an ESRI community post (e.g. from my email due to particular community subscriptions), the link does not take me to the correct location. For example, I received a subscription email which linked to this post: https://community.esri.com/t5/arcgis-survey123-questions/transfer-data-from-old-to-new-survey/m-p/1016185#M31907. However, when first clicking on the link from my email, it took me to https://community.esri.com/#M31907 which then just displays the latest activity. I have also experienced the same issue when trying to access community posts from web searches (e.g. Google). It seems that once it has connected to a post correctly (i.e. the first link rather than the second), all other community post links work as expected. I am using Google Chrome Version 87.0.4280.141 (Official Build) (64-bit).
... View more
01-13-2021
01:51 AM
|
0
|
7
|
4844
|
|
POST
|
Thanks Doug. I've just tried your suggestion but unfortunately it doesn't resolve the issue. It appears to be understanding the constraint expression correctly as it is forcing the user back to the page containing that field to correct it. However the display of the constraint message and red box is seemingly linked to particular parts of the field (time rather than date).
... View more
01-12-2021
08:18 AM
|
0
|
0
|
1577
|
|
POST
|
@KellyGerrow I am having a similar issue. I have a feature layer generated from a Survey123 form with a child point layer and a related table below that. This is the structure: Point feature (parent) - this is the layer not displaying Point feature (child) Related table (child) The parent point layer does not display in webmaps and gives the orange triangle that everyone is describing with the error The layer, [layer_name], did not draw completely. The layer contains 164 point features. Following suggestions from this and other threads, I have tried rebuilding the spatial index, zooming in to see if it is an issue to do with too many features, viewing the webmap in a different browser, and checking geometry. None of these have fixed the issue, and both ESRI and OGC validation checks found no geometry issues. The layer displays as expected in ArcGIS Pro. Any ideas?
... View more
01-12-2021
05:51 AM
|
0
|
0
|
850
|
|
POST
|
I have a survey form created in Survey123 Connect which has style settings of theme-grid pages. I have several fields with constraints, most of which work as expected. However I have one field (TimeOnSite) where neither the constraint message (default of invalid, or custom wording), nor the red box that is expected to occur appear. However, the survey form does 'push' the user back to the form page containing the incorrect field for correction when trying to submit an incorrect entry (but with no guidance on the error or indication exactly which field as the red square doesn't appear). The only instance that results in the correct constraint message and red box appearing is if the time is changed to a future time (in combination with the current date), not if just the date is set to a future date and the time is left unedited (i.e., using current default time). If I change both the date and time to a point in the future, the constraint message and box do not appear. If I change it just the time to a time beyond now (keeping the date as today), the constraint message and box do appear. In contrast, the TimeOffSite field (details below) does work as expected, including both constraint message and red box. The field details are as follows: type name constraint constraint_message default relevant dateTime TimeOnSite .<=now() Cannot be in the future now() ${SurveyType}!='AdHoc' dateTime TimeOffSite (.<=now()) and (.>=${TimeOnSite}) Cannot be in the future or before the start date and time now() string-length(${TimeOnSite})>0 and ${SurveyPossible}='yes' Does anyone have any insights as to why the red box and constraint may not be appearing for the TimeOnSite field? I have also tried setting the constraint formula as (.<=now()) and (.<=today()) but this has the same result. Many thanks, Rob
... View more
01-12-2021
03:28 AM
|
0
|
2
|
1591
|
|
POST
|
Is there any way to calculate the field of an attribute table, or symbology based on an arcade expression for the intersect of two layers? A point layer and a polygon layer in this instance. I am able to use an Intersects expression in a popup, e.g.: // get the count for all sites in the grid
var sites = FeatureSetByName($map,"Sites")
var countSites = Count(Intersects(sites,$feature))
return countSites However the expressions available to calculate an attribute table field or symbology do not accept $map during the use of the FeatureSetByName function, giving the following error: Execution Error:Runtime Error: Identifier Not Found. $map Are there plans for this functionality to be supported in future?
... View more
01-06-2021
10:43 AM
|
1
|
3
|
7993
|
|
POST
|
What do you have in the relevant column for that row?
... View more
01-06-2021
06:07 AM
|
1
|
2
|
2821
|
|
POST
|
@CrystalCowardin do you mean the x and y values? You can store these as separate fields by adding rows to your xlsform with pulldata calculations. E.g. where ${GeoPoint} is the name of your GeoPoint field.
... View more
01-06-2021
04:22 AM
|
1
|
6
|
2830
|
|
BLOG
|
@Anonymous User I'm not sure that is correct as my device locale is the United Kingdom but does not show geotrace/geoshape measurements in metric. This is logged as an enhancement: ENH-000128512 following case #02477998. Suggested workaround is to change the device language settings, however this is not feasible as would require every participant in our surveys to also change their device language.
... View more
12-30-2020
09:24 AM
|
1
|
0
|
60278
|
|
POST
|
@Anonymous User, For some reason Private Messenger isn't an option in my settings. Thank you for looking in to this. I have now disabled Keep track of created and updated features in both the hosted view layers and the hosted layer itself. However, Update existing features is still greyed out in the Append Data window.
... View more
12-24-2020
04:13 AM
|
0
|
1
|
1455
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-24-2026 03:17 AM | |
| 1 | 05-27-2020 02:34 AM | |
| 1 | 01-07-2026 09:19 AM | |
| 3 | 10-20-2025 01:36 AM | |
| 1 | 02-24-2021 10:05 AM |
| Online Status |
Offline
|
| Date Last Visited |
12 hours ago
|