windy 7 years ago
parent
commit
3c0b9fc1bd
  1. 7
      bi/case.js
  2. 7
      docs/case.js
  3. 7
      src/case/layer/pane.list.js

7
bi/case.js

@ -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);
this.check();
},

7
docs/case.js

@ -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);
this.check();
},

7
src/case/layer/pane.list.js

@ -101,9 +101,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);
this.check();
},

Loading…
Cancel
Save