-
Bug
-
Resolution: Won't Fix
-
Normal
-
None
-
8.0.3
-
None
-
Security Level: Jimmy
-
None
-
ZK 8.0.4 S1
-
None
steps to reproduce
- run the attached file, 3458.zul
actual result
There is an extra space between the right side of the window and the right edge of the page.
Since we specify hflex="1", the window's width should extend to fill the page's width.
expected result
There should be no space between the right side of the window and the right edge of the page.
debug info
- overflow.zul is the user's original case
- resize a browser's width, the window's width will fill up the page's width
workaround
- If you use modern browser that supports css flexbox , you can specify flex-grow on the window e.g.
<style> .flex{ flex-grow: 1; } </style> <window contentStyle="overflow: auto" sclass="flex">
- specify width="100%" on parent components.
- relates to
-
ZK-3411 a component's height doesn't fill up its parent with vflex="1" when there is a vertical scrollbar
-
- Closed
-