|
POST
|
Hello. I saw several wonderful presentations on Calcite during the 2023 Dev Summit. All the presentations seemed to mention and / or use Figma as way to explore / design with Calcite. So, i thought that maybe i should give it a try. I am sad to admit that several hours into this experiment i have made nearly zero progress on designing my first file with calcite components. I am wondering if Esri has developed a step-by-step brand-new-to-figma-and-calcite users guide? Starting at the very beginning with creating a count, what it means to 'get a copy' of the necessary calcite files, etc. If a guide doesn't exist, would you be willing to create one, or point me in a direction so i can get started? I'm beginning to wonder if there is a requirement for a paid Figma account. I started with the free version to give it a try before buying. All / any help is greatly appreciated. Thank you.
... View more
03-13-2023
11:05 PM
|
1
|
3
|
3556
|
|
BLOG
|
Hi @Emily_Nilson Thanks for noting the GA4 functionality release. that is exciting news. Can clarify the last bullet point --- do not enable "Enhanced Measurement" - in the blog post? My understanding of GA4 is a bit like having a handful of sand (it's always slipping away from me), but if i understand correctly, without 'Enhanced Measurements' the only stats we will get in GA4 are the 'Automatically tracked events' first_session session_start user_engagement Is my understanding correct? If so, will the Hub team keep working on GA4 functionality so we can use Enhanced Measurements? Thank you. Tom
... View more
12-09-2022
04:18 PM
|
0
|
0
|
5172
|
|
BLOG
|
Thanks for implementing the GA4 functionality and getting this info out to us. I do want to clarify your last bullet point --- do not enable "Enhanced Measurement". My understanding of GA4 is a bit like having a handful of sand (it's always slipping away from me), but if i understand correctly, without 'Enhanced Measurements' the only stats we will get in GA4 are the 'Automatically tracked events' first_session session_start user_engagement Is that correct?
... View more
12-08-2022
02:45 PM
|
0
|
0
|
5476
|
|
BLOG
|
Hello @Emily_Nilson Ideally Hub support for GA4 would be implemented as soon as possible, while also keeping Hub UA support alive till July 1, 2023. UA and GA4 are collecting different metrics in different ways. It'd be great to have a long-ish overlap between data collected with UA and GA4 so we can get some insights/correlations between what GA4 measures and UA measures. This will help provide some value/context to the UA data we have been collecting from our Hub sites for the past couple of years. Otherwise, i think we lose the value of the UA data especially when looking at longer term trends. thank you.
... View more
10-24-2022
02:06 PM
|
0
|
0
|
5361
|
|
POST
|
The wholly unsatisfying and quite troubling answer from Esri was to republish the hosted feature layer. Esri said the source hosted feature layer had become corrupted. There was no explanation for what was corrupt about the layer or how an otherwise perfectly functioning feature layer was corrupted, but republishing solved the problem. It also caused a bunch of extra work for us as well because of republishing the layer. In a recent AGOL update, Esri has offered up some interesting possibilities by allowing VIEWs a sort of independence from the hosted feature layer source. I haven't tried this yet, but supposedly you can update the Source for a hosted feature layer view without impacting the view.
... View more
08-22-2022
08:39 AM
|
0
|
1
|
2000
|
|
DOC
|
@JakeSkinner Thanks for the follow up. I suspected there was a "bug" with the attachments so i opened a tech support case late last week. If you want to follow along, it's case #03125736. I'll reply back here if i learn anything relevant. Thanks again for all your help and sharing of code. I greatly appreciate it.
... View more
08-15-2022
08:58 AM
|
0
|
0
|
56126
|
|
DOC
|
Hey @JakeSkinner . I've spent some additional time poking around at the append() method, and it seems like append() doesnt work as expected with attachments - that is, the attachments aren't associated with their features. I reduced the file geodatabase down to a much more manageable number of around 100 or so features and around 200 or so attachments. The append() operation works fine when using that file geodatabase EXCEPT that none of the features have attachments. I verified that file geodatabase export in the ArcGIS Pro project has the attachments. And i published the file geodatabase as a new hosted feature service in AGOL. The publishing operation worked as expected - the features had attachments. I'm happy to talk via email if that works for you, or i can submit a Tech Support request if you think that's a better approach. Thank you for your help.
... View more
08-11-2022
12:32 PM
|
0
|
0
|
56187
|
|
DOC
|
Thanks @JakeSkinner . I added you to our orgs 'Esri Support Testing' group and named the file 'For Jake Skinner'. Let me know if you can't access the file or have any questions about what's in there.
... View more
08-10-2022
05:02 PM
|
0
|
0
|
56230
|
|
DOC
|
@JakeSkinner my apologies for bugging you, but i'm not able to find the Help i'm looking for in the Esri documentation nor in the community website (highly possible i'm just not looking in the right place). My call to the feature layer 'append()' function fails on a large-ish dataset (about 9K rows) that has attachments (mostly jpeg photos). Other feature layers without attachments work fine. So, i am assuming that there is a timeout issue happening, although the error message is not clear about what went wrong. So, i'm trying to use the 'Future' object option, assuming that's an async way of doing the append, but when i include that option in the append() arguments, per the API documentation, i get the error message append() got an unexpected keyword argument 'future' So, now i'm even more confused. Any thoughts on how i can extend the timeout window of the append call, or make the call asynchronously. I am running the script in a Pro Notebook, version 2.8.6
... View more
08-10-2022
03:03 PM
|
0
|
0
|
56251
|
|
DOC
|
@JakeSkinner This is great! Thank you. It's already saved me a bunch of time and headache. Do you know if there is anyway to do the truncate/append in a sort of transaction - so that it all completes or none of it completes? I'm thinking of a worst case scenario where the Truncate works perfectly, but append fails (maybe there's an internet outage at the exact perfectly wrong time). A similar use case might be that i am updating multiple layers within the same AGOL hosted feature service and one of the updates works but the other one does not. In that case, my data is out of sync with one sublayer updated and the other not.
... View more
08-05-2022
05:14 PM
|
0
|
0
|
56338
|
|
IDEA
|
In the (new) Map Viewer we can use the 'Feature display order' property to control the order in which features are drawn on the map. But, one can only use Numeric or Date type fields in the expression. Given that limitation, i'd like to be able to use Arcade expressions when setting feature display order to convert text fields to a number. This functionality is already available in the JS API (>=v4.21) One specific example is with our Crash data set. The 'Crash Severity Code' is a text string so we cannot use that field that set the drawing order. Unfortunately that is the ideal field to use - we would want to always show crashes that resulted in a fatality on top. We could add a new field to dataset which handles that for us, but that's an unnecessary (in my mind) duplication of data and effort - every time a new record is added or an existing record is updated the calculation process has to run again.
... View more
05-16-2022
09:04 AM
|
0
|
0
|
642
|
|
POST
|
Hi @CraigGillgrass I am using AGOL and I see the exact same behavior. If the 'last save' of my map was done in the Field Maps app, i get the dialog Zoe describes when i next save the map in the (new) web map viewer. If the 'last save' was in the (new) web map viewer, the dialog does not appear upon Saving.
... View more
04-21-2022
01:47 PM
|
1
|
0
|
1694
|
|
POST
|
Hello. It looks like i found a bug in the Field Maps Form Title. My form title includes a field from the map layer. If that field is also one of the fields in the form itself, the title displays as expected. However, if the field is not displayed on the form, then the field value doesn't show up in the title. Here's the specific use case: in the map layer there is a field named 'CaseNumber'. I set the title to "All Cases: {CaseNumber}" If {CaseNumber} is one of the fields displayed on the form, when I edit a feature in Field Maps (or web map viewer), the edit form title is, for example, 'All Cases: 12-3456' If {CaseNumber} is not one of the fields displayed on the form, when I edit a feature in Field Maps (or web map viewer), the edit form title is 'All Cases: {CaseNumber}' I am using Field Maps version 22.1.0 build 690 on an iPad Pro running iOS 15.1
... View more
04-20-2022
10:18 AM
|
1
|
0
|
751
|
|
POST
|
Thanks @Anonymous User . I'll give your suggestion a try and let you know how it goes. One additional question. When you wrote: the only downside is that the business logic is stored in the form so if you made changes to the data in another app that doesn't use the form, the logic wouldn't apply is the new Web Map Viewer an example of where the logic wouldn't apply? I'm imagining a single map that is available to our field crews working with Field Maps and our Admin staff working in the web map viewer. If i understand correctly, in that case both apps are reading the 'form' info from the map so it should work in both of those apps Thanks again.
... View more
04-19-2022
10:35 AM
|
0
|
1
|
3211
|
|
POST
|
Hello. I am wondering if i can automatically set the value in one column when the value in another column changes. More specifically, I have a 'status changed date' column that i'd like to populate with the current date whenever the value in the 'status' column changes. The value of the 'status changed date' could also be set manually if need be, but i'm imagining hiding 'status changed date' field on the form. In the ideal scenario, the 'status changed date' would only be updated if the value of the 'status' column changed. For example, if the 'status' was already 'Complete' and the user inadvertently set the value to 'In Progress', recognized their mistake, and then changed back to 'Complete', the 'status changed date' would not be updated. That functionality is probably asking for more than what's possible, but thought it'd be nice to check just in case. Thank you
... View more
04-18-2022
03:09 PM
|
0
|
5
|
3478
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 2 weeks ago | |
| 9 | 04-14-2026 03:22 PM | |
| 1 | 02-24-2021 12:15 PM | |
| 2 | 01-05-2026 10:04 AM | |
| 1 | 09-30-2025 01:30 PM |
| Online Status |
Offline
|
| Date Last Visited |
Monday
|