|
|
@ -98699,7 +98699,7 @@ BI.MultiSelectInsertList = BI.inherit(BI.Widget, { |
|
|
|
BI.MultiSelectInsertList.superclass._init.apply(this, arguments); |
|
|
|
BI.MultiSelectInsertList.superclass._init.apply(this, arguments); |
|
|
|
|
|
|
|
|
|
|
|
var self = this, o = this.options; |
|
|
|
var self = this, o = this.options; |
|
|
|
this.storeValue = {}; |
|
|
|
this.storeValue = o.value || {}; |
|
|
|
|
|
|
|
|
|
|
|
var assertShowValue = function () { |
|
|
|
var assertShowValue = function () { |
|
|
|
BI.isKey(self._startValue) && self.storeValue.value[self.storeValue.type === BI.Selection.All ? "remove" : "pushDistinct"](self._startValue); |
|
|
|
BI.isKey(self._startValue) && self.storeValue.value[self.storeValue.type === BI.Selection.All ? "remove" : "pushDistinct"](self._startValue); |
|
|
@ -98715,7 +98715,8 @@ BI.MultiSelectInsertList = BI.inherit(BI.Widget, { |
|
|
|
dynamic: false |
|
|
|
dynamic: false |
|
|
|
}, |
|
|
|
}, |
|
|
|
// onLoaded: o.onLoaded,
|
|
|
|
// onLoaded: o.onLoaded,
|
|
|
|
el: {} |
|
|
|
el: {}, |
|
|
|
|
|
|
|
value: o.value |
|
|
|
}); |
|
|
|
}); |
|
|
|
this.adapter.on(BI.MultiSelectLoader.EVENT_CHANGE, function () { |
|
|
|
this.adapter.on(BI.MultiSelectLoader.EVENT_CHANGE, function () { |
|
|
|
self.storeValue = this.getValue(); |
|
|
|
self.storeValue = this.getValue(); |
|
|
@ -98832,7 +98833,8 @@ BI.MultiSelectInsertList = BI.inherit(BI.Widget, { |
|
|
|
}); |
|
|
|
}); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
}] |
|
|
|
}], |
|
|
|
|
|
|
|
value: o.value |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
BI.createWidget({ |
|
|
|
BI.createWidget({ |
|
|
@ -104430,7 +104432,7 @@ BI.SingleSelectInsertList = BI.inherit(BI.Widget, { |
|
|
|
BI.SingleSelectInsertList.superclass._init.apply(this, arguments); |
|
|
|
BI.SingleSelectInsertList.superclass._init.apply(this, arguments); |
|
|
|
|
|
|
|
|
|
|
|
var self = this, o = this.options; |
|
|
|
var self = this, o = this.options; |
|
|
|
this.storeValue = {}; |
|
|
|
this.storeValue = o.value || {}; |
|
|
|
|
|
|
|
|
|
|
|
var assertShowValue = function () { |
|
|
|
var assertShowValue = function () { |
|
|
|
BI.isKey(self._startValue) && self.storeValue.value[self.storeValue.type === BI.Selection.All ? "remove" : "pushDistinct"](self._startValue); |
|
|
|
BI.isKey(self._startValue) && self.storeValue.value[self.storeValue.type === BI.Selection.All ? "remove" : "pushDistinct"](self._startValue); |
|
|
@ -104446,7 +104448,8 @@ BI.SingleSelectInsertList = BI.inherit(BI.Widget, { |
|
|
|
dynamic: false |
|
|
|
dynamic: false |
|
|
|
}, |
|
|
|
}, |
|
|
|
// onLoaded: o.onLoaded,
|
|
|
|
// onLoaded: o.onLoaded,
|
|
|
|
el: {} |
|
|
|
el: {}, |
|
|
|
|
|
|
|
value: o.value |
|
|
|
}); |
|
|
|
}); |
|
|
|
this.adapter.on(BI.SingleSelectLoader.EVENT_CHANGE, function () { |
|
|
|
this.adapter.on(BI.SingleSelectLoader.EVENT_CHANGE, function () { |
|
|
|
self.storeValue = this.getValue(); |
|
|
|
self.storeValue = this.getValue(); |
|
|
@ -104480,6 +104483,7 @@ BI.SingleSelectInsertList = BI.inherit(BI.Widget, { |
|
|
|
popup: this.searcherPane, |
|
|
|
popup: this.searcherPane, |
|
|
|
height: 200, |
|
|
|
height: 200, |
|
|
|
masker: false, |
|
|
|
masker: false, |
|
|
|
|
|
|
|
value: o.value, |
|
|
|
listeners: [{ |
|
|
|
listeners: [{ |
|
|
|
eventName: BI.Searcher.EVENT_START, |
|
|
|
eventName: BI.Searcher.EVENT_START, |
|
|
|
action: function () { |
|
|
|
action: function () { |
|
|
|