Dear All,
is possible to check the signIn status in the portal?
A lot of example uses the default Dialog Box for the login.
I created a custom qml for the login.
How is it possible to check if the login are going successfully or not?
import QtQuick 2.3import QtQuick.Controls 2.0import Esri.ArcGISRuntime 100.0ApplicationWindow {id: appWindowwidth: 800height: 600title: "TestMapQtNEW"Frame {id: frmLoginx: 203y: 200width: 394height: 200anchors.verticalCenter: parent.verticalCenteranchors.horizontalCenterOffset: 0anchors.horizontalCenter: parent.horizontalCenteropacity: 1clip: falseLabel {id: lblPasswordx: 53y: 80text: qsTr("Password:")}Label {id: lblUsernamex: 53y: 49text: qsTr("Username:")}TextField {id: txtPasswordx: 132y: 74placeholderText: qsTr("Text Field")}TextField {id: txtUsernamex: 132y: 43placeholderText: qsTr("Text Field")}Portal {id: myPortalurl: "http://www.arcgis.com"}Button {id: btnLoginx: 232y: 125text: qsTr("Login")onClicked: {var credential = ArcGISRuntimeEnvironment.createObject("Credential", {username:txtUsername.text, password:txtPassword.text});myPortal.credential = credential;myPortal.signIn();//AND NOW? HOW I CAN CHECK THE STATUS AND/OR THE ERROR?}}}// add a mapView component}
Hi Eric and thanks for the reply.
The Portal Object don't have obSignInError. Please note that i using the ArcGIS SDK for QT Quartz Beta:

This are the list of Properties, Signals and Methods:

I tried to check the Bool SignedIn but the result is ever FALSE.
Could you please take a look?

Dear Eric,
sorry for my second reply.
seems that this solution could be solve my problem.
Could you please take a look?
onSignInStatusChanged:{switch (portal1.signInStatus){case 1:break;case 2:txtError.text = "Login Success";break;case 3:txtError.text = "Login ERROR";break;default:break;}}