-
Bug
-
Resolution: Fixed
-
Normal
-
8.0.0, 7.0.6.1
-
Security Level: Jimmy
-
None
-
ZK 8.0.1 S2
-
None
when using the details element the column headers get out of sync with the column widths
This used to work in 6.5.8.1.
<grid> <columns> <column label=""/> <column label="asdf"/> <column label="fsdfa"/> <column label="rghrdt"/> </columns> <rows> <row> <detail> asdf </detail> <textbox></textbox> <textbox></textbox> <textbox></textbox> </row> </rows> </grid>
Workaround is to use a fixed column width on the first column:
<columns> <column label="" width="40px"/> <column label="asdf"/> <column label="fsdfa"/> <column label="rghrdt"/> </columns>