customizing the login interface
3 posts
• Page 1 of 1
customizing the login interface
Hi. I would like to customize the login procedure.
On the server side this has worked well by implementing ISecurityManager as described in https://forum.sibvisions.com/viewtopic.php?f=5&t=6.
Now, on the client side I would like to change the appearance and behavior of the login screen (In more particular, to be able to have a drop-down list for the user login).
How can I tell the JVX Application to replace the login screen by a popup window that I am implementing myself? Is there an interface class and a configuration option like for the security manager? Any suggestions?
Thanks.
On the server side this has worked well by implementing ISecurityManager as described in https://forum.sibvisions.com/viewtopic.php?f=5&t=6.
Now, on the client side I would like to change the appearance and behavior of the login screen (In more particular, to be able to have a drop-down list for the user login).
How can I tell the JVX Application to replace the login screen by a popup window that I am implementing myself? Is there an interface class and a configuration option like for the security manager? Any suggestions?
Thanks.
- user2017
- Posts: 1
- Joined: Wed May 03, 2017 1:17 pm
Re: customizing the login interface
Are you using ProjX? There is a parameter called Application.Login.classname which takes the classname of your own Component. You just have to make sure to implement the ILogin interface.
- manfrede
- Posts: 21
- Joined: Tue Oct 22, 2013 11:45 am
Re: customizing the login interface
An example, based on ProjX: Customize the login dialog
If you don't use ProjX, simply override:
in your application. The source code of base Application
If you don't use ProjX, simply override:
- Code: Select all
protected Login createLogin()
in your application. The source code of base Application
-
Support@SIB - Posts: 353
- Joined: Mon Sep 28, 2009 1:56 pm
3 posts
• Page 1 of 1