|
|
|
@ -2920,10 +2920,14 @@ BI.Combo = BI.inherit(BI.Widget, {
|
|
|
|
|
if (type === BI.Events.COLLAPSE) { |
|
|
|
|
self._hideView(); |
|
|
|
|
} |
|
|
|
|
if (type === BI.Events.EXPAND || type === BI.Events.COLLAPSE) { |
|
|
|
|
if (type === BI.Events.EXPAND) { |
|
|
|
|
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments); |
|
|
|
|
self.fireEvent(BI.Combo.EVENT_EXPAND); |
|
|
|
|
} |
|
|
|
|
if (type === BI.Events.COLLAPSE) { |
|
|
|
|
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments); |
|
|
|
|
self.isViewVisible() && self.fireEvent(BI.Combo.EVENT_COLLAPSE); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (type === BI.Events.CLICK) { |
|
|
|
|
self.fireEvent(BI.Combo.EVENT_TRIGGER_CHANGE, obj); |
|
|
|
|
} |
|
|
|
@ -3324,7 +3328,7 @@ BI.Expander = BI.inherit(BI.Widget, {
|
|
|
|
|
} |
|
|
|
|
if (type === BI.Events.COLLAPSE) { |
|
|
|
|
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments); |
|
|
|
|
self.fireEvent(BI.Expander.EVENT_COLLAPSE); |
|
|
|
|
self.isViewVisible() && self.fireEvent(BI.Expander.EVENT_COLLAPSE); |
|
|
|
|
} |
|
|
|
|
if (type === BI.Events.CLICK) { |
|
|
|
|
self.fireEvent(BI.Expander.EVENT_TRIGGER_CHANGE, value, obj); |
|
|
|
@ -4486,8 +4490,13 @@ BI.Switcher = BI.inherit(BI.Widget, {
|
|
|
|
|
if (type === BI.Events.COLLAPSE) { |
|
|
|
|
self._hideView(); |
|
|
|
|
} |
|
|
|
|
if (type === BI.Events.EXPAND || type === BI.Events.COLLAPSE) { |
|
|
|
|
if (type === BI.Events.EXPAND) { |
|
|
|
|
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments); |
|
|
|
|
self.fireEvent(BI.Switcher.EVENT_EXPAND); |
|
|
|
|
} |
|
|
|
|
if (type === BI.Events.COLLAPSE) { |
|
|
|
|
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments); |
|
|
|
|
self.isViewVisible() && self.fireEvent(BI.Switcher.EVENT_COLLAPSE); |
|
|
|
|
} |
|
|
|
|
if (type === BI.Events.CLICK) { |
|
|
|
|
self.fireEvent(BI.Switcher.EVENT_TRIGGER_CHANGE, value, obj); |
|
|
|
@ -32490,6 +32499,8 @@ BI.ResizableTable = BI.inherit(BI.Widget, {
|
|
|
|
|
mergeCols: [], |
|
|
|
|
mergeRule: BI.emptyFn, |
|
|
|
|
columnSize: [], |
|
|
|
|
minColumnSize: [], |
|
|
|
|
maxColumnSize: [], |
|
|
|
|
freezeCols: [], |
|
|
|
|
header: [], |
|
|
|
|
items: [], |
|
|
|
|