Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Normal
-
Resolution: Fixed
-
Affects Version/s: 8.0.0, 7.0.6.1
-
Fix Version/s: 8.0.1
-
Component/s: Components
-
Security Level: Jimmy
-
Labels:None
-
gh.sprint.customfield.default.name:ZK 8.0.1 S2
Description
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>