|
POST
|
I'm not sure why it is crashing, but can you take that line of code and break it out into a simple reproducible test app?
... View more
11-28-2016
07:12 AM
|
0
|
2
|
1681
|
|
POST
|
Can you query the local feature table or look at the sqlite database to see if the new feature is there? I'm wondering if the new feature is not pulled down or if it is not displayed. If it is not pulled down, then it is possible it is a server bug. If it is simply not displayed, then it may be a runtime bug.
... View more
11-22-2016
08:12 AM
|
0
|
3
|
1614
|
|
POST
|
Glad you got it going. For future reference, try simply re-running the Post Installer instead of reinstalling the whole SDK. This utility copies the binaries and other files from the SDK installation into your Qt installation. The red squiggly lines indicate that the QML plugin wasn't present in the Qt installation, and so Qt Creator is complaining that it could not find it.
... View more
11-22-2016
08:10 AM
|
0
|
0
|
1577
|
|
POST
|
QML has a garbage collector that runs periodically, and it cleans up anything that has gone out of scope. You can force garbage collection by the "gc()" method not the global object. However, you should not need to do this. Are you seeing a leak, or does your app just use a lot of memory? If you see a leak, then this is a bug that should be logged with Esri technical support. Thanks, Luke
... View more
11-22-2016
08:08 AM
|
0
|
0
|
943
|
|
POST
|
Tony- No, that is not normal. Can you please test with the final release that was just released yesterday? If you still see it in Qt, then it sounds like a bug that should be logged with Esri tech support. - Luke
... View more
11-22-2016
08:06 AM
|
0
|
0
|
908
|
|
POST
|
We have a Popup class that is the data model, but we have not yet implemented a view. We plan on doing that in an upcoming update, and this should greatly simplify editing. In the meantime, you could take a look at the AttributeListView that we have in our toolkit - arcgis-runtime-toolkit-qt/AttachmentListViewExample.qml at master · Esri/arcgis-runtime-toolkit-qt · GitHub This should get you on the right track for a "quick and dirty" popup implementation. But once you start having domains, subtypes, attachments, etc, you will need to do some work on your own for now.
... View more
11-22-2016
08:04 AM
|
0
|
0
|
753
|
|
POST
|
Please contact Esri support to have them help you troubleshoot. It appears you are on the right track code-wise. The Attachment editor sample might be good to reference from our QML Sample Application.
... View more
11-22-2016
07:46 AM
|
0
|
1
|
1590
|
|
POST
|
I think you have the basic information you need, you just need to maybe prototype a few things and see what works. One thing to note is that if you want to do offline work, then you will need to use a native API (Runtime or AppStudio) versus a web/hybrid API (JS and Cordova/Phone gap). Most of the things you listed have free trials available, so perhaps it would be prudent to give a few a go and see what seems the most promising for you. Just remember there is never a silver bullet and there are always trade offs between the different technologies (hence why we have so many offerings at Esri )
... View more
11-22-2016
07:44 AM
|
0
|
0
|
1260
|
|
POST
|
Hmm, is this available from the REST side? If so, then it should work. Otherwise, it may be an enhancement we need to put in.
... View more
11-22-2016
07:36 AM
|
0
|
0
|
715
|
|
POST
|
You won't be able to reset the geodatabasefeaturetable. Once it is initialized, that's it. You could move all your code into a new QML file (not have it be in the main App{}), and then use a QML Loader component to load it again and again. Loader QML Type | Qt Quick 5.7
... View more
11-22-2016
07:35 AM
|
1
|
0
|
1300
|
|
POST
|
The answer here should help explain a bit, but the message group layer contains several graphics layers (one for each geometry type), so once initialized, you can access each graphics layer and change the selection color for each https://community.esri.com/thread/181184
... View more
11-22-2016
07:28 AM
|
0
|
0
|
1417
|
|
POST
|
We no longer need a special method in our API - you just use a proxy the same way you would in any Qt application now (QNetworkProxy::setApplicationProxy). This is discussed here - Qt SDK best practices—ArcGIS Runtime SDK for Qt | ArcGIS for Developers Hopefully the search will improve as time goes on and the web crawler starts picking more things up.
... View more
11-22-2016
07:26 AM
|
1
|
1
|
1512
|
|
POST
|
The local geodatabase editing sample switches over to use the local geodatabase. It uses a ternary operator to determine if it is online or offline, and if offline, it uses the local geodatabase feature table. This all happens through property binding. If you want to be explicit in your code, you could instead dynamically create a new FeatureLayer when the generateStatusChanged signal emits, using syntax like this: var fl = ArcGISRuntime.createObject("FeatureLayer");
fl.featureTable = local;
... View more
11-22-2016
07:24 AM
|
0
|
0
|
1072
|
|
POST
|
The workflow described here should be what you need - https://community.esri.com/thread/181184
... View more
11-22-2016
07:08 AM
|
0
|
0
|
1156
|
|
POST
|
Jonathon- We don't currently have plans for this, but would like to see how much interest there was from the community on this. Is the use case for this primarily for testing on the simulators, or would this also be used for deployments? - Luke
... View more
11-22-2016
06:58 AM
|
0
|
3
|
1723
|
| Title | Kudos | Posted |
|---|---|---|
| 3 | 05-27-2026 09:52 AM | |
| 1 | 11-24-2025 10:45 AM | |
| 1 | 07-30-2025 08:26 AM | |
| 1 | 05-15-2025 07:35 AM | |
| 2 | 11-26-2024 01:27 PM |
| Online Status |
Offline
|
| Date Last Visited |
06-17-2026
07:54 AM
|