* commit '3c0b9fc1bde100f04b11aa7842d9100e04f0784c': update
@ -7181,9 +7181,10 @@ BI.ListPane = BI.inherit(BI.Pane, {
this.check();
},
removeItems: function (items) {
BI.remove(this.options.items, items);
this.button_group.removeItems.apply(this.button_group, arguments);
removeItemAt: function (indexes) {
indexes = indexes || [];
BI.removeAt(this.options.items, indexes);
this.button_group.removeItemAt.apply(this.button_group, arguments);
@ -101,9 +101,10 @@ BI.ListPane = BI.inherit(BI.Pane, {