|
|
|
@ -30,7 +30,7 @@ export class MultiSelectNoBarLoader extends Widget {
|
|
|
|
|
|
|
|
|
|
_defaultConfig() { |
|
|
|
|
return extend(super._defaultConfig(...arguments), { |
|
|
|
|
baseCls: "bi-multi-select-loader", |
|
|
|
|
baseCls: "bi-multi-select-loader-no-bar", |
|
|
|
|
logic: { |
|
|
|
|
dynamic: true, |
|
|
|
|
}, |
|
|
|
@ -144,10 +144,10 @@ export class MultiSelectNoBarLoader extends Widget {
|
|
|
|
|
items: LogicFactory.createLogicItemsByDirection(Direction.Top, this.button_group), |
|
|
|
|
})))); |
|
|
|
|
|
|
|
|
|
this.button_group.on(Controller.EVENT_CHANGE, function () { |
|
|
|
|
this.button_group.on(Controller.EVENT_CHANGE, function() { |
|
|
|
|
self.fireEvent(Controller.EVENT_CHANGE, arguments); |
|
|
|
|
}); |
|
|
|
|
this.button_group.on(SelectList.EVENT_CHANGE, function () { |
|
|
|
|
this.button_group.on(SelectList.EVENT_CHANGE, function() { |
|
|
|
|
self.fireEvent(MultiSelectNoBarLoader.EVENT_CHANGE, arguments); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
@ -215,5 +215,6 @@ export class MultiSelectNoBarLoader extends Widget {
|
|
|
|
|
this.button_group.element.css({ "max-height": toPix(h) }); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
resetWidth() {} |
|
|
|
|
resetWidth() { |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|