|
POST
|
My Submissions doesn't honor the sorting set in the configuration
... View more
11-17-2017
08:43 AM
|
0
|
0
|
391
|
|
POST
|
I'm not seeing the manager app refresh when I set up a refresh interval on the map. I've set it to .1 minute and after adding a new report on the reporter side when I view the browser tab that is holding the manager app nothing happens. I have to manually refresh. Is this expected behavior? The refresh interval is not honored in the Reporter app either
... View more
11-16-2017
07:32 AM
|
0
|
2
|
1050
|
|
BLOG
|
Is it possible to make the form run calculations when the form opens rather than requiring manual interaction? I want to prepopulate new fields based on field values I'm pulling down from an existing survey. I'm following the pattern described in the post of one feature service and many surveys. The first survey populates up to 10 questions. The second survey includes some fields from the first survey for context and then about 10 new questions. In the second survey I'm pulling down an integer value into a note field. In a new note field I want to calculate a new value automatically based on that value as soon as the form opens. It doesn't work. However, if I turn that note field into a text field and press enter then the new field will populate. A side effect of this is that the original value can be changed once it is submitted via the second survey. As a work around I created a hidden field in the first survey that stores the original value.
... View more
11-08-2017
07:38 AM
|
2
|
0
|
55608
|
|
BLOG
|
It doesn't seem possible to evaluate different questions within the same relevant expression. if((${Response}='Green Form'),True,if((${Leak_Response_Result}='Replaced'),True,False)) shows a text box when I first open the form. I thought that the False value would keep this box hidden unless one or the other previous questions were answered with the correct value. While the above If statement passes the expression checker the following regex statement does not: regex((${Response},'(Green Form)')|(${Leak_Response_Result},'(Replaced)'))
... View more
11-07-2017
10:03 AM
|
0
|
0
|
20915
|
|
POST
|
My solution was to create a hidden field called MeterSize2 and then used an IF calculation on the MeterSize field (a note field) so it would display like I wanted it to. if((${MeterSize2}='3%2F4 INCH'),'3/4 INCH',if((${MeterSize2}='5%2F8 INCH'),'5/8 INCH',if((${MeterSize2}='1 1%2F2 INCH'),'1 1/2 INCH',if((${MeterSize2}='1 1%2F2 INCH'),'1 1/2 INCH',if((${MeterSize2}='1 1%2F2 INCH'),'1 1/2 INCH',if((${MeterSize2}='1 1%2F2 INCH DISC'),'1 1/2 INCH DISC',if((${MeterSize2}='1 1%2F2 INCH DISC TOUCH READ'),'1 1/2 INCH DISC TOUCH READ',${MeterSize2})))))))
... View more
11-06-2017
12:47 PM
|
0
|
0
|
2245
|
|
BLOG
|
I can pass the date into a date field (testdate2) with the field type set to Null. In different test fields I tried using string(${testdate2}) in the calculation but the answer was 1191384000000. I also tried using date(${testdate2}) and date-time(${testdate2}) but it just shows the date widget. Although setting null on a date field solves the problem. I am curious to know if it is possible to pass a date into a form and save it as text.
... View more
10-19-2017
09:06 AM
|
0
|
0
|
11851
|
|
BLOG
|
This is what I see in the web map popup. Install Date: 10/14/2007 It is stored as a date field in the underlying feature service. copied from the URL &field:MeterInstallDate={INSTALL_DATE} copied from the link address &field:MeterInstallDate=1192406400000 The survey field is a note and the name is MeterInstallDate. The field type is esriFieldTypeString and the length is 10. In this case it comes across blank because 1192406400000 is too large I've also tried passing it to a text field (no explicit field or length set) in the survey. In this case 1192406400000 will get passed.
... View more
10-19-2017
08:18 AM
|
0
|
0
|
11851
|
|
BLOG
|
Just to clarify: "...instead, the mobile worker's device updates the workforce project every minute." - is it every minute regardless of how you set the time interval when location tracking is enabled in a Workforce project? Also. "One last thing to understand about location services on iOS: they never provide an accuracy less than 5 meters" and (from the paragraph about Collector) "Location services are limited in the accuracy that they'll report, even if the device is getting a better accuracy from the location sensor. " - does this mean that even if you have an external GPS connected to iOS running Collector, iOS will still limit the stored accuracy? Or, does it mean that iOS won't report (to the screen) anything less than 5 meters but the app will store the value from the external GPS?
... View more
10-19-2017
06:20 AM
|
0
|
0
|
1930
|
|
BLOG
|
I have the same question. I am not using a feature service with actual x,y fields. Using a hosted feature class I tried this in a popup: arcgis-survey123://?itemID=<my id>:xField=Geometry($feature).x&field:yField=Geometry($feature).y It did not work. When I copied out the link before clicking it showed &field:xField=Geometry(%24feature).x&field:yField=Geometry(%24feature).y I also created an arcade expression in the popup. I used...&field:yField={expression/expr0}&field:xField={expression/expr1} I copied out the link address to see what gets passed and it looks fine &field:yField=-8590245.98&field:xField=4733611.04 However, regardless if I use a note field or a text field the values are not being passed into Survey123. In this case, it seems that if I can see the values in the link then I should be able to pass them. I've got passing the value from arcade expressions working now. The fields are set to esriFieldTypeDouble and works if the type is decimal or text.
... View more
10-18-2017
10:36 AM
|
0
|
0
|
11851
|
|
POST
|
My organization just upgraded from Portal 10.4.1 two days ago and I'm seeing a difference in how related records are accessed in a web map vs a WAB app. In the web map I see this in the popup where it is one click on the Show Related Records link to open the table. In the WAB I get this: I have to click on the arrow first to get this: Then I click on the 3 dots to show the attribute table. I can see how this new popup provides other functionality but in a way it makes it more complicated and less efficient (2 clicks instead of 1). Is there way to make the WAB behave like the web map? I haven't found any documentation on this yet.
... View more
10-13-2017
02:04 PM
|
0
|
2
|
2090
|
|
POST
|
Notes are working for me. Good to know about read_only
... View more
10-13-2017
01:15 PM
|
0
|
0
|
1599
|
|
POST
|
Update 2: I'm finding that I can pull down an previously submitted datetime value but the form is not auto populating a 2nd datetime field I have in the service when the 2nd form is opened.
... View more
10-13-2017
10:04 AM
|
0
|
0
|
1599
|
|
POST
|
Update: I created a new survey from the existing survey and have been making incremental changes. I kept all of the fields. I'm still seeing that text fields don't pre-populate but select questions do. My purpose here is that I want the second survey to show submitted values but not allow them to be edited. Result: The first row is a text field and here I've toggled off read only. The 2nd text field in the 4th row is still read only. The value for the corrected meter number appears.
... View more
10-13-2017
09:23 AM
|
0
|
1
|
1599
|
|
POST
|
I'm following a pattern described in this post about working with existing feature services. I have one feature service with 35 fields and two surveys. The first survey populates up to 30 questions. The second survey is a copy of the first survey with most of the questions deleted except for about 5 from the first survey and an additional 5. The second survey's inbox has a query set to only pull down surveys where a certain question from the first survey = yes. This is working. In the second survey I can see the answers to a select multiple question and a select one question (that I have set to read only) answered in the first survey. However, I can't see the values from a note or a text question that was answered in the first survey. Also, the second survey has its own datetime question and it is not auto populating when the form opens. If I open this form without pulling down an existing survey then the datetime question populates.
... View more
10-12-2017
08:55 PM
|
0
|
4
|
1726
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-05-2025 11:56 AM | |
| 1 | 11-27-2024 11:10 AM | |
| 25 | 08-12-2024 11:06 AM | |
| 1 | 02-01-2019 08:27 AM | |
| 2 | 04-23-2024 08:44 AM |
| Online Status |
Offline
|
| Date Last Visited |
02-04-2026
08:41 AM
|