|
BLOG
|
@UTAHOGM_GIS You can add the column manually or use the latest template from Connect.
... View more
01-24-2022
02:44 PM
|
1
|
0
|
11228
|
|
POST
|
Hi. You cannot us URL parameters to make a specific question read-only. You could hide it, but not make it read-only. You may need to publish a new dashboard-specific version of your survey where some fields are read-only.
... View more
01-19-2022
08:24 PM
|
1
|
1
|
3139
|
|
POST
|
Now logged as BUG-000143301 and scheduled for resolution with version 3.14 @WillvanHeerden
... View more
01-19-2022
09:23 AM
|
0
|
0
|
1872
|
|
POST
|
When you delete a survey from the device, the Sent folder is cleared. Your data has not been lost as it is in your ArcGIS feature layer, but there is no way to pre-populate the Sent folder with the data that was cleared. If you wan to download existing data from a layer into your device, you can use the Survey123 field app Inbox, which you can enable from Survey123 Connect.
... View more
01-19-2022
07:16 AM
|
1
|
0
|
1300
|
|
POST
|
Hi, I posed a getCount custom JS function here: https://github.com/IsmaelInRedlands/Survey123-Tricks-of-the-Trade/tree/main This is what it looks like: function getCount(featureLayer,token){
var xmlhttp = new XMLHttpRequest();
var url = featureLayer + "/query?f=json&where=1=1&returnCountOnly=true";
if (token){
url = url + "&token=" + token;
}
xmlhttp.open("GET",url,false);
xmlhttp.send();
if (xmlhttp.status!==200){
return (xmlhttp.status);
} else {
var responseJSON=JSON.parse(xmlhttp.responseText)
if (responseJSON.error){
return (JSON.stringify(responseJSON.error));
} else {
return JSON.stringify(responseJSON.count);
}
}
} For the feature layer parameter, pass the URL including the layer index. For example: https://services2.arcgis.com/fJJEXNgxjn0dpNsi/ArcGIS/rest/services/Carriage_Trail/FeatureServer/0 If your layer is shared publicly, you do not need to pass the second parameter. To get the token from the user, use: pulldata("@property","token") Starting with the 3.16 release, you can also make use of the pulldata("@layer") function. Check: https://community.esri.com/t5/arcgis-survey123-blog/survey123-tricks-of-the-trade-pulldata-quot-laye... https://community.esri.com/t5/arcgis-survey123-videos/survey123-tricks-of-the-trade-live-query-arcgis/m-p/1228072#M54
... View more
01-18-2022
01:45 PM
|
1
|
3
|
6223
|
|
POST
|
Hi. You cannot get the distance to a point using the device's built-in camera. I suggest you look at the Spike integration with Survey123. More details at: https://spike.ikegps.com/esri-survey123 https://community.esri.com/t5/arcgis-survey123-blog/using-spike-with-survey123-for-arcgis/ba-p/893528 You can get a rough bearing using pulldata("@exif", ${image}, "GpsImgDirection") https://community.esri.com/t5/arcgis-survey123-blog/working-with-exif-image-metadata-in-survey123-for/ba-p/891687
... View more
01-18-2022
12:23 PM
|
1
|
0
|
1855
|
|
POST
|
@WillvanHeerden Good catch. This is a software defect. When using Survey123 web designer, conditional visibility rules are ignored by the address question. Animation below shows how to repro. I will send this to the dev team. However, you may want to open an official Esri Tech Support case for visibility. IssueVisibility.gif
... View more
01-18-2022
11:53 AM
|
0
|
0
|
1877
|
|
POST
|
Another approach: Python. A couple of blogs written a looong time ago but that could give you some ideas: https://community.esri.com/t5/arcgis-survey123-blog/a-simple-e-mail-notification-system-for-survey123/ba-p/894509 https://community.esri.com/t5/arcgis-survey123-blog/a-simple-e-mail-notification-system-for-survey123/ba-p/895031 If your IT team does not like Integromat/Power Automate, you can also discuss having a custom web service (hosted by your IT team) send the email once triggered by the Survey123 webhook. Survey123 webhooks are not limited to Integromat/Power Automate. You can have your Survey123 webhook invoke your own web service, a Lambda function, Google function, Microsoft Logic Apps, etc.
... View more
01-13-2022
02:27 PM
|
1
|
0
|
2793
|
|
POST
|
Idea: Create a survey on top of an existing feature layer and then use that survey to create the reports. In Survey123 Connect, use the create survey from feature service option Publish Go to the Survey123 website and create a report template for your survey
... View more
01-13-2022
09:10 AM
|
1
|
0
|
2166
|
|
BLOG
|
Starting today you can sign up for the Survey123 Newsletter. We will share product news, technical tips, blogs and events. Yes, we all receive many emails every day, but if you want to stay up to date on Survey123, you may want to subscribe to our newsletter! 🙂 Expect a new issue every few weeks. IsmaelChivite_0-1642032056107.png
... View more
01-12-2022
04:02 PM
|
7
|
0
|
1279
|
|
IDEA
|
@PamBlackmore can you please email [email protected] so we can discuss this in more depth?
... View more
01-11-2022
04:34 PM
|
0
|
0
|
2658
|
|
BLOG
|
@erica_poisson The compass appearance is of little use for your workflow. In your case, it looks like you want to get the direction of the photo. Using the EXIF info is the best approach.
... View more
12-17-2021
10:32 AM
|
1
|
0
|
7708
|
|
BLOG
|
We are happy to announce a new update to ArcGIS Survey123. This release addresses a number of high priority issues and brings a couple of new enhancements to the Survey123 web designer experience. Some may consider an update like this as 'minor'. In some ways it really is: End users should not expect any noticeable changes and, as an author, there is nothing you need to worry about in terms of changing your designs or existing surveys. In the other hand, a release is never 'minor' when it resolves an issue that directly affects you. Working on high-priority fixes has been our focus for this update, although we let a couple of new enhancements in web designer sneak in. Here are the highlights: High priority fixes Survey123 website and web app DE-000004920 BUG-000143301 Creating the Set rule -function does not work properly in Survey123 when the Address -component is used in the survey before the Set rule -component. DE-000004287 BUG-000124952 When a survey contains external media that is > 10MB the error 'Failed to save. Cannot read property 'success' of undefined' is returned when attempting to save the share settings in the Collaborate page. BUG-000118236 Large attachments (more than 10 MB) cannot be submitted in Survey123 BUG-000142854 The relevant expression of a file or image question inside a repeat is not honored if the repeat count has a dynamic calculation BUG-000143694 Unable to save data if recalculate is used on fields in a web form on version 3.13 of Survey123 BUG-000136796 The ArcGIS Survey123 survey responses filled out in the browser are not automatically zoom to a specified location in the Geopoint question map viewer when the coordinates are calculated from a Media locator file. BUG-000130873 The Survey123 web application does not honor HTML tag formatting set on surveys published from Survey123 Connect. BUG-000144749 Survey with external selects published from ArcGIS Survey123 Connect cannot be accessed in the web app, and returns the following error message, "This survey cannot be accessed in the web app. Please contact the survey owner to republish the survey with 'Create web form' enabled. Error: Missing .webform file." Connect and field app BUG-000144480 - A 401 error message is returned when overwriting an existing survey from ArcGIS Survey123 Connect. ENH-000134667 The Survey123 Field app URL does not launch the Field app in Android devices from browser Using the new maxResults XLSForm parameter, you can now set the maximum number of candidates shown through the address question type. Fixed a bug that prevented images loading via the Inbox on first attempt for IWA and PKI ArcGIS Enterprise Organizations. Survey123 web designer enhancements File Upload question type The File Upload question type allows respondents to upload documents through a smart form. The form author, specifies how many documents can be uploaded, and of what type. For example, you can limit uploads to up to five PDF or DOCX documents. This question type has been enhanced in two different ways: Up until this release, the maximum document size allowed for upload was 10 MB. Using the Survey123 web app, you can now upload documents up to 100 MB with ArcGIS Online, and 20 MB with ArcGIS Enterprise. The limit for uploads in the Survey123 field app will remain at 10 MB per attachment. We also added a new option in Survey123 designer to help you limit the maximum document size allowed. If you work with Survey123 Connect, you can also use the new max-size bind::esri:parameters property. IsmaelChivite_0-1639591897382.png Survey info dialog shortcut in designer The Edit Survey Info dialog lets you change the title, tags, summary and thumbnail for your survey. You no longer need to access this dialog from the Survey123 gallery. Go to the Survey123 web designer and look at the top banner. You can change bring up the Edit Survey Info dialog with a single click without leaving the design page. You can also change the survey title inline. New designer survey info dialog.gif More resources and next steps For more details about this release, as well as previous updates, check the What's new in Survey123 help topic. Earlier this month we made Survey123 version 3.14 beta available for testing. This will be our next release with new functionality. To learn more about what is coming, check this blog post. Our plan is to release version 3.14 in late January or early February.
... View more
12-15-2021
10:26 AM
|
9
|
3
|
3581
|
|
POST
|
Hi @mattkramer I do not think this is possible. You can add into a map in your form all previously added geopoints within a repeat. See the Point overlays on maps section at: https://doc.arcgis.com/en/survey123/desktop/create-surveys/esricustomcolumns.htm But the above, as of 3.13, does not work with polygons.
... View more
12-11-2021
04:12 PM
|
0
|
1
|
1542
|
|
POST
|
Hi. You will need to use an Iterator module within Integromat. This blog is a good resource to learn more about Iterators. You can also find how to use Iterators with Survey123 arrays in this blog.
... View more
12-10-2021
10:24 AM
|
0
|
0
|
3133
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-03-2021 09:03 AM | |
| 1 | 04-01-2022 12:48 PM | |
| 1 | 03-22-2022 08:44 AM | |
| 1 | 08-26-2021 02:43 PM | |
| 1 | 10-30-2019 10:15 PM |
| Online Status |
Offline
|
| Date Last Visited |
07-10-2026
08:41 AM
|