|
POST
|
Rob, That seems to be a strange issue. So is this issue only happening when you run the app on Debugger? How about the normal AppRun? How about the built app? Are you going to have your client run the app on debugger? We have personally never seen this issue, I am trying to locate a Windows 10 machine trying to reproduce this issue, but I don't think this issue exist on the AppRun or built app. Thank you, Erwin
... View more
11-02-2020
02:43 PM
|
0
|
0
|
796
|
|
POST
|
That is weird. And no error message? Is it possible for you to share the feature layer for us to test? If not, let's work through Esri Technical Support, where we can troubleshoot this issue.
... View more
10-28-2020
10:03 AM
|
0
|
1
|
2761
|
|
POST
|
Kamran, There have been changes in the globalid requirement for submitting attachment since then, I think you can still use the previous logic of attaching and submitting feature by commenting this 3 lines of code from QuickReport/QuickReportApp.qml line ~1330 inside submitReport function. Thank you, Erwin
... View more
10-27-2020
10:33 AM
|
1
|
4
|
2761
|
|
POST
|
Raimond, I am sorry you are experiencing this issue, but any ArcGIS user should be able to login to AppStudio, but then if you don't have an appropriate license, it would tell you after the login is successful. This should not happen, I sometimes see this whenever I have a network issue in my local machine. So you also can not log out after log in? Erwin
... View more
10-27-2020
10:29 AM
|
0
|
0
|
789
|
|
POST
|
Brent, We have IdentifyLayers, GeoView QML Type | ArcGIS for Developers that would identify in all of the map layers. You can try this in our MapViewer template, the MapViewer template would identify the features from all the layers in the webmap. Thank you, Erwin
... View more
10-22-2020
02:41 PM
|
0
|
2
|
2765
|
|
BLOG
|
The AppStudio Framework, or AppFramework, contains platform-neutral QML components to allow you to create apps that work across multiple platforms. The components that the AppFramework provides are intended for use in providing base functionality for your app, including managing file paths, networking interfaces, and image manipulation, as well as tools specific to working within the AppStudio environment. The AppFramework library is unique in that it has features and capabilities that are neither natively provided by the underlying Qt framework nor the ArcGIS Runtime but are necessary and commonly used for developing apps. We are excited to share new features and enhancements added to AppStudio 4.3 release with you in this blog post. New SystemTheme component The SystemTheme component is used to contain the visual theme being used for the device so that it can be used within the app, e.g. light and dark mode. A SystemTheme object contains the information on the operating system theme, which is then used for a number of example controls within the app. You can take a look at the sample code in the API reference and inside the Status Bar sample. We have also implemented this in AppStudio Player version 4.3. New Battery component (BETA) AppFramework now has a new Battery component to monitor battery levels, power modes, and power source. To see this in action, see Screen and System Info sample. import ArcGIS.AppFramework.Platform 1.0
..
App{
..
Text {
text: "Battery Level: %1%".arg(Battery.level)
}
..
} DocumentDialog component enhancements The DocumentDialog component is used to access documents external to your app, we have added few enhancements to this component such as it now uses the native device file pickers on mobile devices and supports selecting folders and multiple files. You can take a look at the new sample, Working with Files, to see how it is being used to browse and select files. New VersionNumber component The VersionNumber component provides an interface to check the app's current version, as well as to edit if necessary. Version numbers are separated into three separate numbers, separated by decimal points. The first is the macro number, followed by the minor, and then the micro. This code sample demonstrates a potential usage of VersionNumber, by comparing the version number of the current AppStudio version with one provided in a text field. App{
..
Button {
text: "Compare"
onClicked: {
var ver1 = AppFramework.versionNumber(AppFramework.version);
var ver2 = AppFramework.versionNumber("1.2.3");
var result = ver1.compare(ver2);
if (result < 0 )
logTextArea.text = "Result: " + result + ". AppFramework Version is less than version 1.2.3";
else if (result === 0 )
logTextArea.text = "Result: " + result + ". AppFramework Version is equal to version 1.2.3";
else
logTextArea.text = "Result: " + result + ". AppFramework Version is greater than version 1.2.3";
}
}
..
} CameraDialog component enhancements The CameraDialog component provides access to the system's camera to take photos and movies, using the best resolution supported by the system. For iOS and Android, it will open the device's native camera app. For other platforms (macOS, Windows, and Linux) this component will instead open a custom camera app. In this release, we added few new properties, captureToLocation property which allows saving images or video to a specific location, and captureFlags property to save images and videos to the camera roll. We also just released a new Camera Dialog sample. New error handling pattern DocumentDialog uses a new error handling pattern, please take a look at the DocumentDialogError component. And EmailComposer has been enhanced with a new error handling pattern, please take a look at the EmailComposerError component. Note: if your app uses the onComposeError signal handler, it needs to be changed to use the new onErrorChanged signal. Please refer to the example below. EmailComposer {
id: emailComposer
to: "[email protected]"
cc: ["[email protected]", "[email protected]"]
bcc: "[email protected]"
subject: "Feedback for " + app.info.title
onErrorChanged: {
var reason = error.errorCode
console.log(reason)
}
} File Handling updates with Content URIs We introduced the ability to open files in other apps using the AppFramework.openUrlExtenally() method. We enhanced Clipboard share and improved app sharing options with content URIs. We improved File and FileInfo access with content URIs. We added support in EmailComposer for attaching files on Android using content URIs. We enhanced ExifInfo to support Android content URIs. Other changes and new features include the following: We introduced the ability to check the availability of the app using the AppFramework.isAppInstalled() method. We introduced support for removable storage in StorageInfo with the storageType property. We improved the performance of BarcodeReader and added support for barcodes with white lines on black background. We added timeout property in NetworkRequest and Networking. We improved ciphers for encryption on Android in SecureStorage. Other bug fixes and enhancements are listed in the https://community.esri.com/groups/appstudio/blog/2020/09/21/arcgis-appstudio-version-43-is-now-available blog post. Learn more about AppStudio: New to AppStudio? Check out this website to learn more about what ArcGIS AppStudio can do to you and your organization. Check out our recent workshop recordings to get started with creating native apps using AppStudio. Let us know about your creations built using AppStudio to be featured in AppStudio Showcase Gallery. Provide your ideas and suggestions to us on ArcGIS Ideas site. Follow us on Twitter @ArcGISAppStudio to keep up-to-date on the latest information. The AppStudio team periodically hosts workshops and webinars; please sign up for the AppStudio newsletter if you are interested in information regarding AppStudio events.
... View more
10-20-2020
09:37 AM
|
0
|
0
|
1060
|
|
POST
|
I am going to tag ArcGIS Web AppBuilder as that is the correct group.
... View more
10-19-2020
11:11 AM
|
0
|
0
|
1180
|
|
POST
|
Srinivasa, Can you give us a little more context about what you are trying to build as far as the product? Are you using AppStudio? Are you using one of our templates or custom app? You mentioned "widget", we don't have a concept of widgets in AppStudio. In AppStudio AppFramework, we have ExifInfo https://developers.arcgis.com/appstudio/api-reference/qml-arcgis-appframework-exifinfo/ where you can set or get property from images including location data. Thank you, Erwin
... View more
10-15-2020
10:36 AM
|
0
|
2
|
1180
|
|
POST
|
Frank, That would inside views/MapPage.qml, look for identifyFeatures function, around line ~3271. We are using the ArcGIS Runtime SDK for Qt functionality called identifyLayersWithMaxResults that would identify the topmost GeoElement in all of the map's layers at the specified screen coordinates. But you can replace it with identifyLayerWithMaxResults GeoView QML Type | ArcGIS for Developers that would Identify which GeoElements in the specified layer appears at the specified screen coordinates. The difference is you need to specify the layer object as an additional parameter. Also based on this notice, FAQ: How is the World Geocoding Service affected by HTTPS Only enforcement? , please check on views/SearchPage.qml around line 580, to make sure that the Geocoding URL is using HTTPS URL. Thank you, Erwin
... View more
10-14-2020
02:17 PM
|
0
|
0
|
1219
|
|
POST
|
Hello Cody, Are you asking AppStudio to support this? are you using our MapViewer template? Thank you, Erwin
... View more
10-12-2020
05:05 PM
|
0
|
0
|
955
|
|
POST
|
See related post here, "Survey123 field app" to load a predetermined survey on startup Also this has been logged in the issue backlog for Survey123 field app template, to add pre-determined survey as a setting in the Survey123 field app template in AppStudio. It would also be helpful if you can raise this as an official enhancement through Esri Technical Support, so that we can track it. cc: ArcGIS Survey123
... View more
10-09-2020
05:46 PM
|
0
|
0
|
1263
|
|
POST
|
I think contacting Esri Technical Support can be done through email or phone call. Esri Support Contact Support
... View more
10-09-2020
03:45 PM
|
0
|
0
|
3011
|
|
POST
|
Ryan, I will take it back, this is not an issue with ArcGIS Runtime SDK for Qt PopupManager QML Type | ArcGIS for Developers, this should be an enhancement to the AppStudio MapViewer template. If you can help us submit this as an official enhancement to support embed video in the popup for MapViewer template via Esri Technical Support, that would be amazing. Erwin.
... View more
10-09-2020
10:55 AM
|
1
|
2
|
3011
|
|
POST
|
Brent, The white screen issue normally related to QML issue. Can you try running your app in AppRun in AppStudio Desktop? Also if you can send the application or share it publicly then share the name to us, we can probably try to help troubleshoot. Or let's work it with Esri Technical Support, so that we can troubleshoot and see what the issue is. Thank you, Erwin.
... View more
10-09-2020
09:20 AM
|
0
|
0
|
1235
|
|
POST
|
Ryan, I am trying to create a repro case for this, how do you embed videos in the popup? I have the sample webmap with embed video here, https://www.arcgis.com/home/item.html?id=0dd52c7027894c4eb2c30b184191fd59, but I want to understand how it is created. It is most likely a bug with this PopupManager QML Type | ArcGIS for Developers, this is what we are using to display pop-up in MapViever. Erwin.
... View more
10-08-2020
08:54 AM
|
1
|
4
|
3011
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 07-07-2020 01:26 PM | |
| 1 | 10-27-2020 10:33 AM | |
| 1 | 12-06-2021 10:36 AM | |
| 1 | 10-01-2021 12:53 PM | |
| 1 | 08-24-2021 06:15 PM |
| Online Status |
Offline
|
| Date Last Visited |
12-08-2021
03:08 PM
|