-
Bug
-
Resolution: Fixed
-
Major
-
8.6.1
-
Java 11
Spring Boot 2.1.3.RELEASE
ZK Spring Boot starter 1.0.4
ZK Spring core 4.0.0
ZK 8.6.1
ZK Theme pack 8.6.0.1 (iceblue)
-
ZK 9.0.1 S1
Steps to Reproduce
When upgrading from ZK 8.6.0.1 to 8.6.1, the content of the grid detail appears as hidden (visibility:hidden) :
Fiddle : http://zkfiddle.org/sample/1d5qgpk/2-Grid-detail-invisible-with-ZK-8-6-1
Current Result
The detail grid is invisible
Expected Result
The detail grid is visible
Debug Information
https://github.com/zkoss/zk/commit/5e8d5547f0366151b88a025e3c67c8ff2c92fdcf#diff-9d09aa23b5e41daed1a2f2cf664115e0R1299
Grid with no head will hide the body
Workaround
Defines columns explicitly
<detail> <grid mold="paging" pageSize="5" emptyMessage="No options"> <columns> <column/> <column/> </columns> // omitted </detail>
or just remove the empty <columns/>