ZK framework: conflict between resizing and refreshing the browser

nluegi

New Member
I need some help with an issues related to resizing and refreshing browser with ZK framework.I have the following:\[code\]<window sizable="true" height="100%" width="100%" sclass="window"> <vbox hflex="1" vflex="1"> <cell hflex="1" vflex="1"> ... </cell> <cell hflex="1" vflex="2" valign="middle"> .... </cell> <cell hflex="1"> ... </cell> <cell hflex="1" vflex="1"> .... </cell> </vbox></window>\[/code\]with:\[code\].window{ min-height: 700px; min-width: 1200px;}\[/code\]When I resize my browser using the botton right corner my \[code\]<window>\[/code\] resizes well. When my browser is smaller than 700px height a scroll appears. Ok. But if I refresh my browser using F5, vflex is recalculated using the dimensions of what I am seeing at the moment not taking into account the part of the browser I don
 
Top