|
POST
|
Issue will be resolved in 1.11 - 30 September 2021 release date.
... View more
09-16-2021
11:31 PM
|
0
|
4
|
2573
|
|
POST
|
This issue will be resolved in 1.11 - Release scheduled for September 30 2021
... View more
09-16-2021
11:28 PM
|
1
|
0
|
2573
|
|
POST
|
Hi Embeez, I guess you mean making the project content multlingual like you can in Survey123. At the moment the only option is to create a different project for each target language. Could you please raise it as an idea (along with details of your workflow) and we will review. Thanks John
... View more
09-09-2021
10:16 PM
|
1
|
1
|
2391
|
|
POST
|
Hi geomappsdev It will be available as an enterprise template: Are you seeing this version?
... View more
09-06-2021
06:37 AM
|
0
|
0
|
3835
|
|
POST
|
5.1 has been released. Downloads are here: https://www.esri.com/en-us/arcgis/products/arcgis-appstudio/resources
... View more
09-06-2021
06:34 AM
|
0
|
0
|
3835
|
|
POST
|
Hi HaowenRui, Yes, you would not see any warning if the threshold numbers were made to be very large. We are still looking into this issue. Thanks John
... View more
08-26-2021
09:14 PM
|
1
|
0
|
2567
|
|
POST
|
Hi all, we are looking into this issue and will provide an update as soon as we can. This will be a priority issue for resolving.
... View more
08-26-2021
09:12 PM
|
1
|
0
|
2632
|
|
POST
|
Hi @Amanda__Huber Thank you for your feedback! We published a blog to explain the use of 'Project user input URL parameters' a bit further with more details, please see https://community.esri.com/t5/arcgis-quickcapture-blog/using-urls-to-populate-project-user-inputs/ba-p/1091675
... View more
08-26-2021
09:08 PM
|
0
|
0
|
1099
|
|
BLOG
|
User Inputs QuickCapture project users tap big buttons to capture types of features. The location of the feature is taken from the location of the device, and the attribute values are either fixed, or calculated on the fly using device variables. On top of this, buttons can be configured to allow user enter additional values through the use of user inputs. User inputs allow users to enter (or select) a value that is subsequently written to a specific field of a captured feature, and they come in two types: Button user inputs – Where the value is entered after a project button is pressed. For example a user entering a count that gets written to the count field of the captured feature. Project user inputs – Where the value is entered before a project buttons is pressed. For example a user could enter their cost centre, which then gets written to the costCent field of any records that are subsequently captured. Both input types support free text (single or multiline) or choice lists to help streamline entry. They ultimately make your your projects more flexible, and help reduce the number of buttons that you need to inlude. However, there are some key differences that you should be aware of before we continue: Project user inputs are set up at the project level. Meaning that they can be assigned to any button (from any layer) in the project - as long as the field being updated is text. Button user inputs on the other hand are linked to the specific layer/button/field they were created from. Although project user inputs support choice lists, these lists are created managed at the project level. At the current release (1.10), choice lists can't be created from any coded value domains in the target layer. Conversly, button user inputs do support both coded value and range domains. Project user inputs support URL parameters, where button user inputs do not. Due to this last point, the rest of the blog will focus on project user inputs only. To learn more about creating user inputs, see the following blog: https://community.esri.com/t5/arcgis-quickcapture-blog/understanding-user-inputs-in-arcgis-quickcapture/ba-p/892208 Project user input URL paramters From 1.10 of the mobile application, we included support for up to 3 user inputs (up from a previous of 1). This meant that the user could, for example, enter their cost center, the project number and company) and have these values written to specific fields of each and every feature they subsequently captured. Further more, the workflow could be streamlined (and made more robust) if these inputed values could prepulated. This is possible with the use of a URL paramter. Essentially you can construct a URL that when launched would do the following: Launch the QuickCapture mobile app, or if not yet installed on the device, take the user to the appropriate app store so it can be downloaded Download and open a specific project Automatically populate the project user input(s) with fixed values For example, the following URL will download a project and pre-populate the cost center project user input with the value ES001: arcgis-quickcapture://?itemId=ee28345410cc4647a74ef66f54f237e&userInput:001=ES001 If the cost center later changed, then the URL would need to be updated with a new cost center and redistributed. Alternatively, the user could manually update the value in the app. Understanding the URL Scheme Next up we’ll break down the URL to help you better understand it. So, here we go........ To launch the QuickCapture mobile app, we use the custom URL for QuickCapture: arcgis-quickcapture:// As long as the app is installed on the device, this link will launch it. To launch the QuickCapture mobile app, and download/open a specific project, we use this: arcgis-quickcapture://?itemId=<id> ? is put in front of any parameters included in the URL. itemID is the itemID parameter name = is the operator <item id> Should be replaced with the item id of the project that you want to download/open. In the example above it was: ee28345410cc4647a74ef66f54f237e This item id can be easily obtained from the URL of the project when opened in the Quickcapture Web Designer. To open the project and pre populate one project userInput, we use this: arcgis-quickcapture://?itemId=<item id>&userInput:<input id>=<value> Lets focus on the the last part of the URL and break it down: &userInput:<input id>=<value> & denotes an additional paramter in the URL userInput is the userInput parameter name : is a seperator between the parameter name and the <input id> <input id> is the id of the user input. This is used to map the entered value to the correct user input in the project. These are a string based number, for example 001, 002 or 003. = is the operator <value> is the value to enter into the project user input In order to get the <input id>, you need to open the project in the QuickCapture Web Designer and then go into the JSON editor. Then scroll down to the userInput{} array and look for the project userInput you are interested in. Note that both button and project user inputs are in the same array, so check the mode property is project when copying the id. Once you understand the URL structure for a single projet user input, it should be simple enough to expand the url to populate all three (if your project supports this many). Take a look at the following example: arcgis-quickcapture://?itemId=77eb6d7d68c64f928bcd9135b2516e4c&userInput:001=1001&userInput:[email protected]&userInput:003=Running This passes 1001 to project user input 001; [email protected] to project user input 002; and Running to project input 003. Note: Although user input ids may match display order (e.g. 001, 002, 003), this is not guaranteed. Other combinations are possible, e.g: 003, 001, 002. When constructing these URLS, make sure the values being passed to the project user inputs are valid. For example, if the project user input is a choice list, then make sure you are passing a value that is in the list. Or if the project user input has an input mask applied (restricting the values can be entered), the passed in value needs to comply If this is not the case, the URL will launch the project and open on the project user input page - but no value will be entered. It will then be up to the user to maually enter a valid input. Finally, a note on URL distribution. You can open the link by pasting it into a web browser, share the link via an email, or even use them to create a QR Code that can be scanned. You can try the latter by scanning the following with your device camera (this will download a test project to try out): If you want to find out more about the QuickCapture custom URL scheme or the alternative of app links (https://quickcapture.arcgis.app) please see the documentation.
... View more
08-25-2021
05:54 AM
|
3
|
3
|
2853
|
|
IDEA
|
Hi Heather, can you please share your workflow? What are the layers and what do you want to measure?
... View more
08-15-2021
08:05 PM
|
0
|
0
|
3903
|
|
POST
|
1.10.196 has been released. This contains a fix for this issue.
... View more
08-15-2021
08:03 PM
|
1
|
3
|
2282
|
|
BLOG
|
By default, the QuickCapture modules in Integromat will connect to ArcGIS Online, but you can also make Integromat work against your own instance of ArcGIS Enterprise. Before we start, it is important to highlight that Integromat needs to communicate with your own ArcGIS Enterprise instance, and this will not be possible if ArcGIS Enterprise is running completely behind your firewall. You need to make your ArcGIS Enterprise instance is available to Integromat over the internet. ArcGIS Enterprise administrators are familiar with this concept, which is often resolved by exposing ArcGIS Enterprise through a reverse proxy in the DMZ, although there are other options. A second step, involves explicitly registering Integromat as an app in your ArcGIS Enterprise instance. This step is necessary for Integromat to be able to securely authenticate against your ArcGIS Enterprise. Follow these steps: Log into your portal and go to Content. Add a new Item of type Application. Type: Application Title: Integromat (Really, you can call this anything you want) Tags: QuickCapture (Same here, any tag you want) Switch to the Settings tab in the item you created in the previous step Data source URL: https://www.integromat.com Click on the App Registration section and select Update Add the following redirect URI's: https://www.integromat.com/oauth/cb/app https://www.integromat.com/oauth/cb/oauth2 https://www.integromat.com/oauth/cb Click on Update to confirm and Save all changes All the above is necessary for Integromat to be trusted before you can initiate a secure connection to your Enterprise instance. Now, it is time to create a new Connection within Integromat to your ArcGIS Enterprise instance. While adding a new web hook using the Watch Project module, choose to create a New Connection: In the Create a New Connection dialog, expand the advanced settings. Add the https URL of your ArcGIS Enterprise instance, including the web adaptor name. Populate the AppID and AppSecret properties using the App Registration information from the Application item you created before in your portal. Click on continue to authenticate against your ArcGIS Enterprise instance. You will be able to re-use this connection again and again when creating new web hooks. NOTE: That Integromat has been re-named Make. However, these steps will still work.
... View more
08-11-2021
11:47 PM
|
1
|
12
|
11766
|
|
POST
|
We have just released version 1.10 of ArcGIS QuickCapture, so that the template will be made available in AppStudio 5.1. Note that app templates for Survey123 and QuickCapture are built for a specific version of AppStudio. For example, you can only use the QuickCapture 1.10.190 template in AppStudio 5.1. As no versions of QuickCapture or Survey123 were released using AppStudio 5.0, no templates are available in that AppStudio version.
... View more
08-05-2021
11:05 PM
|
2
|
1
|
4082
|
|
IDEA
|
Please allow also user to press Enter to confirm „Button user input“. Clicking „DONE“ button only with mouse slows our field process as we use mainly notebook keyboard. This will be implemented in version 1.10 of the app - due for release in early Aug 2021. The return key will work on any single line or choice list user input (Project and Button) - but not multiline. For multiline, pressing enter will add a new line to the input.
... View more
07-28-2021
07:59 PM
|
0
|
0
|
1831
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 1 | 04-15-2026 08:34 PM | |
| 1 | 04-15-2026 09:29 PM | |
| 1 | 01-19-2026 07:51 PM | |
| 2 | 12-21-2025 05:34 PM |
| Online Status |
Offline
|
| Date Last Visited |
a week ago
|