Hi,
I’m undocking cell to window, but I need the next.
a) I need to undock to a window with ‘web’ skin. I’ve layout with default skin : ‘dhx_blue’.
b)I need to undock to a window with my own size.
How can I do this?
Thank you.
Hello,
>> I need to undock to a window with ‘web’ skin. I’ve layout with default skin : ‘dhx_blue’.
You can try to call dhxLayout.dhxWins.setSkin before undock
dhxLayout.dhxWins.setSkin(“web”);
dhxLayout.cells(id).undock();
>> I need to undock to a window with my own size.
dhxLayout.cells(id).undock();
dhxLayout.dhxWins.window(id).setDimension(width,height);
Thank you.
This works but have a bug.
When I change a ‘web’ skin, some cell’s size change.
I don’t know the reason.
I had to use default skin.
When undock is called, window style is the same is the style of layout cell. So different skins can be not compatible.
You can try to create the necessary skin using skin builder. In this case there is no need to use approach provided before