Can't change Window - Skin

Hello

I really don’t know where’s my mistake but i’m not able to change window’s skin. I always see the window transparent or with default “dhx_skyblue” skin.
I attached a test project and really hope someone can help me with this.

Thank you
Test.rar (254 KB)

Really no idea ?

Hi

sorry for long response

shortly:
call dhxW.setSkin(“dhx_web”); after layout init

in details:
layout inits windows inside for “dock/undock” feature. windows set css with skin name to viewport (document.body by the default).
so when you init windows and set “dhx_web” skin to it - documeny.body (default viewport) gets css “dhx_web”, but after you init layout - body gets “skyblue” class back because layout is rendered in skyblue skin.

something like

Ok … that helped … thank you :slight_smile: