We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 83cfc6f + ee64f84 commit 911b124Copy full SHA for 911b124
Imports/ArcGIS/Runtime/Toolkit/Dialogs.2.0/AuthenticationView.qml
@@ -72,6 +72,17 @@ Item {
72
id: authView
73
anchors.fill: parent
74
75
+ Component.onCompleted: {
76
+ var parentsChildren = parent.children;
77
+ var maxZ = 0;
78
+ for (var i = 0; i < parentsChildren.length; i++){
79
+ if (parentsChildren[i] === authView)
80
+ continue;
81
+ maxZ = Math.max(maxZ, parentsChildren[i].z);
82
+ }
83
+ authView.z = maxZ + 1; // the view should be shown on top
84
85
+
86
/*!
87
\brief The AuthenticationManager instance.
88
0 commit comments