- 
    Type:Bug 
- 
    Resolution: Unresolved
- 
    Priority:Normal 
- 
    None
- 
    Affects Version/s: 7.0.6.1
- 
    Component/s: ZK Client Engine
- 
    None
- 
        None
1. click the button above to set listitem invisible.
2. check select all checkbox.
3. observe the browser console.  javascript errors occurred.
a workaround:
zk.afterLoad('zul.sel', function() {
	function _isListgroup(w) 
function _isListfoot(w)
{ return w.$instanceof(zul.sel.Listfoot); }function _isListgroupfoot(w)
{ return zk.isLoaded('zkex.sel') && w.$instanceof(zkex.sel.Listgroupfoot); }    zk.override(zul.sel.SelectWidget.prototype, '_isAllSelected', function(){
    	if (!this._selItems.length)
			return false;
		var isGroupSelect = this.groupSelect;
		for (var it = this.getBodyWidgetIterator(
), w; (w = it.next()) 
 
		return true;
    });
});