hmm.
let me makes clear this problem
- Click the "Profil" on Navbar
- CLICK inside panel and HOLD your click
- then drag to right side
hmm.
let me makes clear this problem
Hi Adith,
Yes this time i'm be able to reproduce it.
The culprit if this behaviour your custom CSS style:
pre
.ui-panel {
width: 70% !important;
}
/pre
Please remove this CSS code.
Take a look on screen shot for details: http://prntscr.com/49xzb7/direct
Regards.
Hi Yurii,
Thanks, that code is work.
but would you explain to me, why that happened?
and, if i want to sizing the panel, what must i do ?
Thanks
Regards
Hi Adith,
Please use this JS to apply certain width to your panel:
pre
.ui-panel {
width: 70%;
}
.ui-panel-closed.ui-panel{
width: 0;
}
/pre
Regards.