|
|
|
@ -150,6 +150,16 @@ BI.ListPane = BI.inherit(BI.Pane, {
|
|
|
|
|
this.button_group.setValue.apply(this.button_group, arguments); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
setAllSelected: function (v) { |
|
|
|
|
if (this.button_group.setAllSelected) { |
|
|
|
|
this.button_group.setAllSelected(v); |
|
|
|
|
} else { |
|
|
|
|
BI.each(this.getAllButtons(), function (i, btn) { |
|
|
|
|
(btn.setSelected || btn.setAllSelected).apply(btn, [v]); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
getValue: function () { |
|
|
|
|
return this.button_group.getValue.apply(this.button_group, arguments); |
|
|
|
|
}, |
|
|
|
|