-
Bug
-
Resolution: Fixed
-
Normal
-
6.0.1, 6.0.2, 6.5.0
First, place some panels inside a portal layout and setting their sizable attribute to "true". Then, move a panel to another location.
The moved panel will lose its ability to be resized. The mouse cursor simply does not change to the resizing symbol when hovering over the border.
Below is a sample code to reproduce the issue.
<portallayout> <portalchildren width="30%"> <panel id="p1" height="150px" title="Panel 1" sizable="true" border="normal"> <panelchildren> <div width="100%" height="100%" style="background-color: blue"/> </panelchildren> </panel> <panel id="p2" height="300px" title="Panel 2" sizable="true" border="normal"> <panelchildren> <div width="100%" height="100%" style="background-color: green"/> </panelchildren> </panel> </portalchildren> <portalchildren width="70%"> <panel id="p3" height="150px" title="Panel 3" sizable="true"> <panelchildren> <div width="100%" height="100%" style="background-color: red"/> </panelchildren> </panel> </portalchildren> </portallayout>
- relates to
-
ZK-1235 Resizing of Panels in Portal Layout is very buggy
- Closed