-
Bug
-
Resolution: Fixed
-
Normal
-
3.6.4, 6.0.2
-
IE8, IE7 http://www.zkoss.org/zksandbox/
Problem with Grid/Listbox header and content horizontal synchronization.
To reproduce use code for ZUL below and IE8 or IE7 browser.
1. Scroll most right using grid horizontal scroll.
2. Click on first textbox with id="t1".
In result, header is scrolled left, but rows stay scrolled right.
Wrong labels for rows.
<div> <grid width="400px"> <auxhead> <auxheader label="Q1" colspan="3" ><textbox id="t1" width="200px" /></auxheader> <auxheader label="Q2" colspan="3"><textbox width="200px" /></auxheader> </auxhead> <columns> <column label="Jan" width ="100px"/><column label="Feb" width ="100px"/><column label="Mar" width ="100px"/> <column label="Apr" width ="100px"/><column label="May" width ="100px"/><column label="Jun" width ="100px"/> </columns> <rows> <row> <label value="Jan"/><label value="Feb"/><label value="Mar"/> <label value="Apr"/><label value="May"/><label value="Jun"/> </row> </rows> </grid> </div>