|
BLOG
|
Or remove them completely or control when they show and when they do not.
... View more
07-02-2019
09:49 AM
|
2
|
0
|
12700
|
|
POST
|
Wait I just tried mine and they are greyed out also. I only ever use the count. Well that is a bummer I wonder why. Just found this. The standard web map cannot do this but a Web app can! Hi Megan, I had the same issue. From the Web Map it looks like it's not possible. But with Web AppBuilder, you can configure the Edit Widget to allow editing of related tables. Yet it's quite tedious, too many clicks needed IMHO... Also check out this guys custom ones that may work for you https://community.esri.com/thread/119278-roberts-custom-wab-widgets
... View more
07-02-2019
09:09 AM
|
2
|
1
|
1323
|
|
POST
|
Oh and the o or 1 is correct since it is just telling you the count of forms not showing the data.
... View more
07-02-2019
09:06 AM
|
1
|
3
|
1323
|
|
POST
|
Weird. What happens when you click Show Related Records? Does it find the records? If not the RC may not be correct.
... View more
07-02-2019
09:05 AM
|
0
|
4
|
3730
|
|
POST
|
Oh and if you want to get fancy I built in QA warnings into the popup using arcade. I query the related for badness then yell at them in Red. Here is an example that checks the related form for 3 lines - and they must be labeled 1, 2, 3. if ($feature.EvalStatus == "Eval") {
var sql = "PlotKey = '" + $feature.PlotKey + "'";
var tbl = Filter(FeatureSetByName($map,"LPI"), sql);
var txt = ''
for (var f in OrderBy(tbl,"LineNumber")) {
txt = txt + f.LineNumber + ' '
}
txt = Left(txt,Count(txt)-1)
if (txt != '1 2 3') {
return "\n----LPI Line Number Issue! Found: " + txt
}
else {
return ''
}
}
else {
return ''
} Then my popup does this. Also note I show them how many forms of each are found. This is easy since it is already built in to the popup. Just turn on say Objectid and set it to count. I really wish I could symbolize by this but it makes sense that drawing on a arcade expression would be too slow.
... View more
07-02-2019
08:41 AM
|
1
|
0
|
3730
|
|
POST
|
If you have the relationship class from meter to form you can edit in the popup of the meter. In the popup for the meters go to configure attributes. Then way at the bottom you will see all the related fields. Check the box next to edit on just the ones you want. See attached Then have the managers use a different map then the field that is just what they want. I would not use views or joins at all. Maybe that is the issue. Have them both hit the same FC just have 2 diff maps to present it differently.
... View more
07-02-2019
08:37 AM
|
0
|
7
|
3730
|
|
BLOG
|
No my areas are way too big for that. A guy might cover 100x100 mile radius while offline. Plus really why do all that work when I could just pop in a sd card and go. Plus no wifi needed. And when we do have wifi then I would have 20 guys eating up the wifi in the office - just to all download the exact same thing! AND that file is already just sitting there on their computer! Creating the VTPK once and copy paste to 400 tablets is way more efficient, esp when they only change once a year. Lets support the easy way. I guess I do not understand Vector basemaps at all. Vector tiles work best for things like roads where there are discrete features with lots of white space in between. A Basemap is a continues surface of data/colors - which does not make sense for vector tiles. In my brain at least having a TPK basemap with VTPK overlays is the perfect solution. Yet in the few years vector tiles have been out I still cannot do this. I cannot think of any use case where I would have just vectors as my basemap. I guess I just don't get the vision here. Vector tiles could be a home run but they are crippled. We had a simple 3rd party Esri code stack app that did all of this years ago no problem so I know its possible it just needs to be opened up. Please consider it as it would really change our lives. I also really wish VPTK could have popups or at least one field attached (I see a spot in there for it). In Pro you can associate a FS for popups but have not found this in AGOL yet or Collector. Thanks!
... View more
07-02-2019
07:08 AM
|
0
|
0
|
4530
|
|
POST
|
Do you need to use 123? You can edit all you want in a regular AGOL web map. You can then control which fields are editable or even show in the pop up. That way they could set their fields and for sure not mess up the original data.
... View more
07-02-2019
06:49 AM
|
2
|
9
|
3730
|
|
POST
|
I think what you said "It's like the app treats existing attribute data in the point Feature Layer as a "manual edit". is correct. Do these need to be editable? If you change to a read only Note field it may work like you want or a calculate if they do not need to see it. I also wonder of you had a calculate field type then a Note that just used the calculate field value if that would do it. Read only does not have the refresh button I think. I never use the inbox (I use colletor url passes instead) so I am not positive. Sorry I can't help more.
... View more
07-02-2019
06:43 AM
|
0
|
0
|
5949
|
|
BLOG
|
Just heard of some reports of issues with pulldata not working - fields are not showing. Mine seem to be ok but some in groups on big forms are having issues. Anyone seen this yet? thanks
... View more
07-01-2019
12:40 PM
|
0
|
0
|
12700
|
|
BLOG
|
3.5 is a great release! During my 4 some years with 123 I think this release is a major milestone. Thanks for working on the validation esp. This had become a major issue. For me there are 2 items left on my list. 1. Add the ability to validate fields by page. So when a user says next page stop and check or errors before continuing (just like a repeat does). Ideally this is a page by page setting. Also would love to have option of warning but can continue or full stop cannot advance page before corrected. Many parts of forms can fail if they miss a critical field on the first page. Ever other field app we have ever tested has had this so the users are now really expecting it. Lots of support calls on this telling me it is a bug. 2. Adaptive drop down lists. When going repeat to repeat I would love the last item chosen to always go to the top. Super speed savings when you have to pick the same choice 50 times in a repeat out of a list of 3-5000! Across forms would be awesome also but I know a lot harder to implement. I think across repeat should be pretty easy though. Some day looking across forms would be nice. Say form 1 they said it was a house then on form 2 they cannot add how many units are in the apt building. I heard the backend DB is open to a API now so we may be able to query the internal DB somehow? thanks!
... View more
07-01-2019
10:21 AM
|
0
|
0
|
12700
|
|
POST
|
I have a simple time on my form that tells the user how long they have been going while adding repeats. Calc is if(${SpeciesList},round(int(now() - ${StartedForm}) div (1000*60),1),round(int(now() - ${StartedForm}) div (1000*60),1)) If I remember right I do the If so that it recalcs on each repeat add. The issue is it also recalcs as soon as someone opens the form back up from sent. This causes the time to go really high. Is there a way I can get it to calc each repeat but not when reopening from Sent or Draft? If they add more data I get it but even just looking at the old one changes the value. Maybe my if is if(opened from sent or drafts?, keep old val, else calc new val). thanks for any ideas.
... View more
07-01-2019
09:36 AM
|
0
|
4
|
1528
|
|
POST
|
Which version do you have? This was a known bug in 3.3 I think. 3.5 just came out last Friday. Try that. I would update connect and the app as there are a ton of fixes.
... View more
07-01-2019
08:50 AM
|
2
|
5
|
5949
|
|
BLOG
|
Your comment here "Are you saying that want to be able have multiple VTPK's/TPK's local to the device and then add them as layers directly into the map in Collector? " Yes that is exactly it. I just want to copy paste a list of VTPKs and TPKs to a sd card on my tablet and use them as on/off layers in my Collector and 123 maps. Our central office has a directory full of layers Roads.tpk Streams.tpk Gates.tpk Ownershipslines.tpk etc These all get built off maps each weekend and pushed out to local offices. I have about 10-20 TPKs per office with 20 offices. Each area is about 10GB that has to be on every tablet. Managers cover many offices so I load as much as 70 GB on those! We have imagery, and all the above type layers for about 30,000 sq miles or more. I thought VTPKs would change the game for me since my roads layers went from 10 gb to 25 mb! But then the files have just been sitting here for years now because I cannot actually use them for anything. Adding to the map is an interesting idea. Normally the TPK is so huge that this would not help me. VTPK may be different. But in the end we have such limited wifi that they prob will not help much. I really need to get data on via usb in these remote areas. We may be offline for weeks. Thanks for asking! Just trying to help make it better.
... View more
07-01-2019
08:17 AM
|
0
|
0
|
4530
|
|
POST
|
3.5 just came out today for Android. On iOS it is still is not showing up. 3.5 is way better. 3.3 had lots of issues. It is in TestFlight just not the app store yet. I run a iPad 6th gen as does some of the crew. We have not had any issues on any of the our 9 large forms. One diff is our official tablets runners forced us to all update to 12.3. 12.3.1 is out but I have not tried it yet.
... View more
06-28-2019
09:50 AM
|
1
|
0
|
3366
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 07-08-2026 07:34 AM | |
| 1 | 4 weeks ago | |
| 1 | 07-08-2026 03:46 PM | |
| 1 | 07-08-2026 03:08 PM | |
| 1 | 07-08-2026 03:15 PM |
| Online Status |
Online
|
| Date Last Visited |
Thursday
|