|
POST
|
Has something changed with the cloud Arm7 build? My apps on android seem to crash now when loading a map. I have loaded the version i made on monday and the version I made today, using the cloud Arm7. Both made with the exact same code. Monday APK works and Today's doesn't. Please Advise
... View more
04-17-2019
12:49 PM
|
0
|
3
|
907
|
|
POST
|
We assign surveys to our users through our portal. We will frequently add and remove surveys based on the time of year and the users role. Do the old surveys get removed from the users device when they are no longer associated with a user or they have been deleted? I am seeing a user with about 31 surveys on their device storage down ~\ArcGIS\My Surveys when they should only have 15 now. Do we have to manually manage this, and if on an IOS device how would we do this? We also are using the AppStudio code of 123 for another project, and we will run into the same situation? Do we need to code the cleanup of this folder to match the surveys the user actually has permissions to? And get rid of the old surveys?
... View more
04-15-2019
06:40 AM
|
0
|
1
|
2226
|
|
POST
|
1. My version of App Studio is 3.2.79. 2. Testing on Windows 10 and IOS 12.1.4 3. My App Studio Player is 3.2.35 It fails to show offline in windows when I first go offline on my app (so my app doesn't require network), but Networking.isOnline is still true because it still has a connection. Then i kill the network with either ipconfig /release of disconnection modem (not router). I need to detect that I have not internet access rather quickly, as in both of these instances Networking.isOnline is still true. So then my app thinks it can go back online and this causes numerous issues with the app. I need some type of quick Network tester on top of Networking.isOnline. Any ideas?
... View more
03-21-2019
07:01 AM
|
0
|
0
|
2819
|
|
POST
|
I am trying to determine if my app has an internet connection? It seems like Networking.isOnline is always returning true even though i have airplane mode on on my computer or phone. I have a mode that I allow a user to take the data offline when they know they won't have internet or cell service. I don't want the app to be able to then come back ONLINE when there is no Network Connection or internet when coming back online console.log("------- Networking.isOnline: ", Networking.isOnline)
When my app comes back from an offline mode, it has to have internet connection to sync all the data
But is seems like Networking.isOnline is always true?
... View more
03-20-2019
08:54 AM
|
0
|
4
|
3324
|
|
POST
|
I need to hide the legend from a couple of layers or edit it slightly, but I am unable to figure out how to view the Model data that is represented on this page (I want to iterate the model and get Name, SymbolURL, LayerName, etc)? LegendInfoListModel QML Type | ArcGIS for Developers I see how to used the mode using the example here arcgis-runtime-samples-qt/BuildLegend.qml at 37f29d3634a2ee71933836e6546c58d42fcfe081 · Esri/arcgis-runtime-samples-qt ·… But how do I update the legendinfos Model and remove an entry? I don't even know how to view it? I have tried json.stringify and legendinfos.forEach(function(element, index, array), but those just seem to return the colors and other information. I want the information on the legendinfoListMode page so I can remove some layers and elements of that legend.
... View more
03-15-2019
12:30 PM
|
0
|
1
|
876
|
|
POST
|
Did you ever get this to work? I am stuck on this exact thing? I have a related notes table to my parent Feature Layer. The table represents various notes taken on the parent Feature layer. Every time I try and create a blank feature it comes back as null? Do the createFeatureAttributes all have to be accounted for or something, meaning that we need GlobalID too? In my below code my noteFeature is always null after the createFeature line notefeatureAttributes = {"1" : 1, 2 : 2};
var notesTable = app.fieldNoteTable; //QmlServiceFeatureTable
var noteFeature = notesTable.createFeature(notefeatureAttributes); //NULL Featrue? My noteFeature above is null after that line
... View more
03-14-2019
07:03 AM
|
0
|
0
|
1309
|
|
POST
|
So did you create a related table that has geometry. I cannot even create a feature on my related table, but my related table has no geometry.
... View more
03-14-2019
06:42 AM
|
0
|
0
|
990
|
|
POST
|
So now I have this table as a QmlServiceFeatureTable but cannot seem to create a feature on that related table. Every time I try to make a feature, the result is null. i simply want to create a record in this related table, update the attributes, and apply edits. I cant get the create feature to work get a new feature, let alone get to the point where I can addfeature and applyedits. ServiceFeatureTable onlineFeatureTable
onlineFeatureTable = map.tables.get(0); //THIS is an empty table that is related to one of my feature layers, confirmed that it exists
//None of these work, the resulting feature is null?
//1
var onlineFeature = onlineFeatureTable.createFeature(); //Null result
//2
var featureAttributes = {"1" : "1", "2" : "2"};
var onlineFeature = onlineFeatureTable.createFeatureWithAttributes(featureAttributes, null); //Null result
//3
var featureAttributes = {"1" : "1", "2" : "2"};
var onlineFeature = onlineFeatureTable.createFeature(featureAttributes); //Null result
... View more
03-13-2019
11:57 AM
|
0
|
2
|
990
|
|
POST
|
I have a related table to my Feature Service called "notes". I want to simply add a note to this related table that links back to my feature service. I believe i have set up the proper keys/relationship. I have also been able to cast this table as both a ServiceFeatureTable or a FeatureTable. Now i am working on simply trying to create a record that will work both online and offline. I can work out all the UI stuff, but is there a quick example of how to just make a new record with a new "note" column entry? ServiceFeatureTable onlineFeatureTable
onlineFeatureTable = map.tables.get(0);
... View more
03-11-2019
11:19 AM
|
0
|
3
|
1090
|
|
POST
|
This was working when I got in this morning at 8am CST. Thanks. Is there a better way to report this or contact.
... View more
03-11-2019
10:23 AM
|
0
|
1
|
1669
|
|
POST
|
This Error is Happening again. Can you look into this again
... View more
03-08-2019
12:59 PM
|
0
|
4
|
1669
|
|
POST
|
You are correct. I needed to setup the relationship between the feature layer and the non spatial table, that way when it went offline it grabbed the non spatial relationship by default. This was my problem. Thank You
... View more
03-08-2019
11:25 AM
|
0
|
0
|
1323
|
|
POST
|
I need to query a non spatial table offline that is in my mobile map package. Here is what I do online and it works THIS is what I do online and want to do the same offline. I basically do the below to find my query layers and tables to use later on for (var i = 0; i < map.operationalLayers.count; i++) {
//DO SOMETHING ONLINE
}
for (var y = 0; y < map.tables.count; y++)
{
//DO SOMETHING WITH THE TABLE ONLINE
} Here is the Offline code after I just went offline and everything downloaded to my device with the mobile map package. No tables are returned when one should be returned as it does when online. //This works for the operational layers and 2 are returned as expected
var operationalLayers = offlineMapJob.result.mobileMapPackage.maps[0].operationalLayers
for (var i = 0; i < operationalLayers.count; i++) {
//DO SOMETHING OFFLINE
}
//No tables are returned?? It should be one
var tableLayers = offlineMapJob.result.mobileMapPackage.maps[0].tables
console.log("TakeOfflinePage - tableLayers.count :", tableLayers.count );
for (var y = 0; y < tableLayers.count; y++)
{
//DO SOMETHING WITH THE TABLE OFFLINE, Non return however
} I feel this might have something to do with my generate offline map parameters, but I have tried all variations including parameters.DestinationTableRowFilter = Enums.DestinationTableRowFilterAll I just need to know how to make the tables download along with the operational layers
... View more
03-06-2019
02:11 PM
|
0
|
2
|
1391
|
|
POST
|
It is now working and was able to build successfully
... View more
02-27-2019
06:47 AM
|
0
|
0
|
1669
|
|
POST
|
I am signed into AppStudio and I have used cloud make numerous times. However I am now unable to do this. I get the error on the cloud make below and it wont make now? I have logged off and back in numerous times. When I try and build I get some error on the bottom of the build status screen saying Error 401 with a long Error Transferring URL
... View more
02-26-2019
10:54 AM
|
0
|
8
|
1829
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 08-23-2018 06:49 AM | |
| 1 | 08-02-2023 08:28 AM | |
| 1 | 01-03-2020 10:54 AM | |
| 1 | 11-30-2017 06:41 AM | |
| 1 | 08-20-2018 01:10 PM |
| Online Status |
Offline
|
| Date Last Visited |
01-27-2026
08:03 AM
|