1. 程式人生 > >how can I make the login form transparent?

how can I make the login form transparent?

event ack bsp with alt nbsp init eve ext

This is how you can make the Login Form transparent:

1. Add this css to Server Module-> Custom css:

.frmLogin .x-window-body
{
  background-color: transparent !important;
}

2. Make the form color in design time to ‘clNone‘.

3. Form Login->ClientEvents->UniEvents->BeforeInit:

function window.beforeInit(sender, config)
{
  config.baseCls=‘frmLogin‘;  
}

It will make totally transparent with no border, only controls will appear. 技術分享圖片

I use Extjs 6.5

how can I make the login form transparent?