-
Bug
-
Resolution: Fixed
-
Normal
-
8.0.5
-
None
-
Security Level: Jimmy
-
None
-
None
Steps to Reproduce
http://zkfiddle.org/sample/2m2ij5s/3-Select-all-select-group-and-groupfoot
run fiddle
Use the select all checkmark
Current Result
All listitems and listgroups and listgroupfoot are selected
Expected Result
Only listitems should be selected
Debug Info
Listbox / groupsmodel default selection control don't tag listgroup and listgroupfoot as non selectable, even though they are not data items
Root Cause
Workaround
<script><![CDATA[
zk.afterLoad('zul.sel', function() {
var xListbox = {};
zk.override(zul.sel.Listbox.prototype, xListbox ,{
selectAll: zkf= function (notify, evt)
,
setSelectAll: zkf
});//zk.override
});//zk.afterLoad
]]></script>