|
|
|
@ -68565,7 +68565,7 @@ BI.MultiLayerSelectTreeCombo = BI.inherit(BI.Widget, {
|
|
|
|
|
eventName: BI.MultiLayerSelectTreeTrigger.EVENT_ADD_ITEM, |
|
|
|
|
action: function () { |
|
|
|
|
var value = self.trigger.getSearcher().getKeyword(); |
|
|
|
|
self.combo.setValue(value); |
|
|
|
|
self.combo.setValue([value]); |
|
|
|
|
self.combo.hideView(); |
|
|
|
|
} |
|
|
|
|
}] |
|
|
|
@ -69747,7 +69747,7 @@ BI.MultiLayerSingleTreeCombo = BI.inherit(BI.Widget, {
|
|
|
|
|
eventName: BI.MultiLayerSingleTreeTrigger.EVENT_ADD_ITEM, |
|
|
|
|
action: function () { |
|
|
|
|
var value = self.trigger.getSearcher().getKeyword(); |
|
|
|
|
self.combo.setValue(value); |
|
|
|
|
self.combo.setValue([value]); |
|
|
|
|
self.combo.hideView(); |
|
|
|
|
} |
|
|
|
|
}] |
|
|
|
@ -74606,16 +74606,14 @@ BI.MultiSelectInsertList = BI.inherit(BI.Single, {
|
|
|
|
|
_joinKeywords: function (keywords, callback) { |
|
|
|
|
var self = this, o = this.options; |
|
|
|
|
this._assertValue(this.storeValue); |
|
|
|
|
if (!this._allData) { |
|
|
|
|
o.itemsCreator({ |
|
|
|
|
type: BI.MultiSelectInsertList.REQ_GET_ALL_DATA |
|
|
|
|
}, function (ob) { |
|
|
|
|
self._allData = BI.map(ob.items, "value"); |
|
|
|
|
digest(self._allData); |
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
|
digest(this._allData); |
|
|
|
|
} |
|
|
|
|
// 和复选下拉框同步,allData做缓存是会爆炸的
|
|
|
|
|
o.itemsCreator({ |
|
|
|
|
type: BI.MultiSelectInsertList.REQ_GET_ALL_DATA, |
|
|
|
|
keywords: keywords |
|
|
|
|
}, function (ob) { |
|
|
|
|
var values = BI.map(ob.items, "value"); |
|
|
|
|
digest(values); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
function digest (items) { |
|
|
|
|
var selectedMap = self._makeMap(items); |
|
|
|
@ -74716,8 +74714,6 @@ BI.MultiSelectInsertList = BI.inherit(BI.Single, {
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
populate: function () { |
|
|
|
|
this._count = null; |
|
|
|
|
this._allData = null; |
|
|
|
|
this.adapter.populate.apply(this.adapter, arguments); |
|
|
|
|
this.trigger.populate.apply(this.trigger, arguments); |
|
|
|
|
} |
|
|
|
@ -74949,16 +74945,14 @@ BI.MultiSelectInsertNoBarList = BI.inherit(BI.Single, {
|
|
|
|
|
_joinKeywords: function (keywords, callback) { |
|
|
|
|
var self = this, o = this.options; |
|
|
|
|
this._assertValue(this.storeValue); |
|
|
|
|
if (!this._allData) { |
|
|
|
|
o.itemsCreator({ |
|
|
|
|
type: BI.MultiSelectInsertNoBarList.REQ_GET_ALL_DATA |
|
|
|
|
}, function (ob) { |
|
|
|
|
self._allData = BI.map(ob.items, "value"); |
|
|
|
|
digest(self._allData); |
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
|
digest(this._allData); |
|
|
|
|
} |
|
|
|
|
// 和复选下拉框同步,allData做缓存是会爆炸的
|
|
|
|
|
o.itemsCreator({ |
|
|
|
|
type: BI.MultiSelectInsertNoBarList.REQ_GET_ALL_DATA, |
|
|
|
|
keywords: keywords |
|
|
|
|
}, function (ob) { |
|
|
|
|
var values = BI.map(ob.items, "value"); |
|
|
|
|
digest(values); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
function digest (items) { |
|
|
|
|
var selectedMap = self._makeMap(items); |
|
|
|
@ -75061,8 +75055,6 @@ BI.MultiSelectInsertNoBarList = BI.inherit(BI.Single, {
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
populate: function () { |
|
|
|
|
this._count = null; |
|
|
|
|
this._allData = null; |
|
|
|
|
this.adapter.populate.apply(this.adapter, arguments); |
|
|
|
|
this.trigger.populate.apply(this.trigger, arguments); |
|
|
|
|
} |
|
|
|
@ -75268,16 +75260,14 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
|
|
|
|
|
_joinKeywords: function (keywords, callback) { |
|
|
|
|
var self = this, o = this.options; |
|
|
|
|
this._assertValue(this.storeValue); |
|
|
|
|
if (!this._allData) { |
|
|
|
|
o.itemsCreator({ |
|
|
|
|
type: BI.MultiSelectList.REQ_GET_ALL_DATA |
|
|
|
|
}, function (ob) { |
|
|
|
|
self._allData = BI.map(ob.items, "value"); |
|
|
|
|
digest(self._allData); |
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
|
digest(this._allData); |
|
|
|
|
} |
|
|
|
|
// 和复选下拉框同步,allData做缓存是会爆炸的
|
|
|
|
|
o.itemsCreator({ |
|
|
|
|
type: BI.MultiSelectList.REQ_GET_ALL_DATA, |
|
|
|
|
keywords: keywords |
|
|
|
|
}, function (ob) { |
|
|
|
|
var values = BI.map(ob.items, "value"); |
|
|
|
|
digest(values); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
function digest (items) { |
|
|
|
|
var selectedMap = self._makeMap(items); |
|
|
|
@ -75408,8 +75398,6 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
populate: function () { |
|
|
|
|
this._count = null; |
|
|
|
|
this._allData = null; |
|
|
|
|
this.adapter.populate.apply(this.adapter, arguments); |
|
|
|
|
this.trigger.populate.apply(this.trigger, arguments); |
|
|
|
|
} |
|
|
|
|