Page 1 of 1

Login/Logout popup

Posted: Mon Aug 30, 2021 5:56 am
by kkwon2
Hi,

Using iX developer 2.40 SP6 for an X2 Extreme 12 panel.
Is there a way to disable the Security LoginUser/Logout popup?

Regards,
Ken

Re: Login/Logout popup

Posted: Mon Aug 30, 2021 7:27 am
by AMitchneck
Ken,

Do you mean the dialog that appears indicating user has logged in/out? If you are using login/logout through script, you can supply the login/logout function with the value 'false'

Code: Select all

Globals.Security.Login(false);
Globals.Security.Logout(false);

Re: Login/Logout popup

Posted: Mon Aug 30, 2021 12:00 pm
by kkwon2
Great, thanks.

Ken