|
|
@ -104795,7 +104795,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 = o.value || {}; |
|
|
|
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); |
|
|
@ -104851,14 +104851,14 @@ BI.SingleSelectInsertList = BI.inherit(BI.Widget, { |
|
|
|
eventName: BI.Searcher.EVENT_START, |
|
|
|
eventName: BI.Searcher.EVENT_START, |
|
|
|
action: function () { |
|
|
|
action: function () { |
|
|
|
self._showSearcherPane(); |
|
|
|
self._showSearcherPane(); |
|
|
|
self._setStartValue(""); |
|
|
|
self._setStartValue(); |
|
|
|
this.setValue(BI.deepClone(self.storeValue)); |
|
|
|
this.setValue(BI.deepClone(self.storeValue)); |
|
|
|
} |
|
|
|
} |
|
|
|
}, { |
|
|
|
}, { |
|
|
|
eventName: BI.Searcher.EVENT_STOP, |
|
|
|
eventName: BI.Searcher.EVENT_STOP, |
|
|
|
action: function () { |
|
|
|
action: function () { |
|
|
|
self._showAdapter(); |
|
|
|
self._showAdapter(); |
|
|
|
self._setStartValue(""); |
|
|
|
self._setStartValue(); |
|
|
|
self.adapter.setValue(self.storeValue); |
|
|
|
self.adapter.setValue(self.storeValue); |
|
|
|
// 需要刷新回到初始界面,否则搜索的结果不能放在最前面
|
|
|
|
// 需要刷新回到初始界面,否则搜索的结果不能放在最前面
|
|
|
|
self.adapter.populate(); |
|
|
|
self.adapter.populate(); |
|
|
@ -104880,7 +104880,7 @@ BI.SingleSelectInsertList = BI.inherit(BI.Widget, { |
|
|
|
self._setStartValue(keyword); |
|
|
|
self._setStartValue(keyword); |
|
|
|
assertShowValue(); |
|
|
|
assertShowValue(); |
|
|
|
self.adapter.populate(); |
|
|
|
self.adapter.populate(); |
|
|
|
self._setStartValue(""); |
|
|
|
self._setStartValue(); |
|
|
|
self.fireEvent(BI.SingleSelectInsertList.EVENT_CHANGE); |
|
|
|
self.fireEvent(BI.SingleSelectInsertList.EVENT_CHANGE); |
|
|
|
}); |
|
|
|
}); |
|
|
|
} else { |
|
|
|
} else { |
|
|
@ -104907,7 +104907,7 @@ BI.SingleSelectInsertList = BI.inherit(BI.Widget, { |
|
|
|
self.adapter.setValue(self.storeValue); |
|
|
|
self.adapter.setValue(self.storeValue); |
|
|
|
assertShowValue(); |
|
|
|
assertShowValue(); |
|
|
|
self.adapter.populate(); |
|
|
|
self.adapter.populate(); |
|
|
|
self._setStartValue(""); |
|
|
|
self._setStartValue(); |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
self.adapter.setValue(self.storeValue); |
|
|
|
self.adapter.setValue(self.storeValue); |
|
|
|
assertShowValue(); |
|
|
|
assertShowValue(); |
|
|
@ -104917,18 +104917,9 @@ BI.SingleSelectInsertList = BI.inherit(BI.Widget, { |
|
|
|
} |
|
|
|
} |
|
|
|
}, { |
|
|
|
}, { |
|
|
|
eventName: BI.Searcher.EVENT_CHANGE, |
|
|
|
eventName: BI.Searcher.EVENT_CHANGE, |
|
|
|
action: function (value, obj) { |
|
|
|
action: function () { |
|
|
|
if (obj instanceof BI.MultiSelectBar) { |
|
|
|
self.storeValue = this.getValue(); |
|
|
|
self._joinAll(this.getValue(), function () { |
|
|
|
|
|
|
|
assertShowValue(); |
|
|
|
|
|
|
|
self.fireEvent(BI.SingleSelectInsertList.EVENT_CHANGE); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
self._join(this.getValue(), function () { |
|
|
|
|
|
|
|
assertShowValue(); |
|
|
|
|
|
|
|
self.fireEvent(BI.SingleSelectInsertList.EVENT_CHANGE); |
|
|
|
self.fireEvent(BI.SingleSelectInsertList.EVENT_CHANGE); |
|
|
|
}); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
}] |
|
|
|
}] |
|
|
|
}); |
|
|
|
}); |
|
|
@ -104971,9 +104962,7 @@ BI.SingleSelectInsertList = BI.inherit(BI.Widget, { |
|
|
|
this.trigger.stopEditing(); |
|
|
|
this.trigger.stopEditing(); |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
_assertValue: function (val) { |
|
|
|
_assertValue: function () {}, |
|
|
|
val || (val = ""); |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_makeMap: function (values) { |
|
|
|
_makeMap: function (values) { |
|
|
|
return BI.makeObject(values || []); |
|
|
|
return BI.makeObject(values || []); |
|
|
@ -105081,7 +105070,7 @@ BI.SingleSelectInsertList = BI.inherit(BI.Widget, { |
|
|
|
// this.trigger.adjustView();
|
|
|
|
// this.trigger.adjustView();
|
|
|
|
}, |
|
|
|
}, |
|
|
|
setValue: function (v) { |
|
|
|
setValue: function (v) { |
|
|
|
this.storeValue = v || ""; |
|
|
|
this.storeValue = v; |
|
|
|
this.adapter.setValue(this.storeValue); |
|
|
|
this.adapter.setValue(this.storeValue); |
|
|
|
this.trigger.setValue(this.storeValue); |
|
|
|
this.trigger.setValue(this.storeValue); |
|
|
|
}, |
|
|
|
}, |
|
|
|