|
|
|
/**
|
|
|
|
* 简单的复选下拉框控件, 适用于数据量少的情况, 与valuechooser的区别是allvaluechooser setValue和getValue返回的是所有值
|
|
|
|
* 封装了字段处理逻辑
|
|
|
|
*
|
|
|
|
* Created by GUY on 2015/10/29.
|
|
|
|
* @class BI.AbstractAllValueChooser
|
|
|
|
* @extends BI.Widget
|
|
|
|
*/
|
|
|
|
BI.AbstractAllValueChooser = BI.inherit(BI.Widget, {
|
|
|
|
|
|
|
|
_const: {
|
|
|
|
perPage: 100
|
|
|
|
},
|
|
|
|
|
|
|
|
_defaultConfig: function () {
|
|
|
|
return BI.extend(BI.AbstractAllValueChooser.superclass._defaultConfig.apply(this, arguments), {
|
|
|
|
width: 200,
|
|
|
|
height: 30,
|
|
|
|
items: null,
|
|
|
|
itemsCreator: BI.emptyFn,
|
|
|
|
cache: true
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
_valueFormatter: function (v) {
|
|
|
|
var text = v;
|
|
|
|
if (BI.isNotNull(this.items)) {
|
|
|
|
BI.some(this.items, function (i, item) {
|
|
|
|
// 把value都换成字符串
|
|
|
|
// 需要考虑到value也可能是数字
|
|
|
|
if (item.value === v || item.value + "" === v) {
|
|
|
|
text = item.text;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return text;
|
|
|
|
},
|
|
|
|
|
|
|
|
_itemsCreator: function (options, callback) {
|
|
|
|
var self = this, o = this.options;
|
|
|
|
if (!o.cache || !this.items) {
|
|
|
|
o.itemsCreator({}, function (items) {
|
|
|
|
self.items = items;
|
|
|
|
call(items);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
call(this.items);
|
|
|
|
}
|
|
|
|
function call (items) {
|
|
|
|
var keywords = (options.keywords || []).slice();
|
|
|
|
if (options.keyword) {
|
|
|
|
keywords.push(options.keyword);
|
|
|
|
}
|
|
|
|
var resultItems = [];
|
|
|
|
BI.each(keywords, function (i, kw) {
|
|
|
|
var search = BI.Func.getSearchResult(items, kw);
|
|
|
|
resultItems = resultItems.concat(search.match).concat(search.find);
|
|
|
|
});
|
|
|
|
resultItems = BI.uniq(resultItems);
|
|
|
|
if (options.selectedValues) {// 过滤
|
|
|
|
var filter = BI.makeObject(options.selectedValues, true);
|
|
|
|
items = BI.filter(items, function (i, ob) {
|
|
|
|
return !filter[ob.value];
|
|
|
|
});
|
|
|
|
}
|
|
|
|
if (options.type === BI.MultiSelectCombo.REQ_GET_ALL_DATA) {
|
|
|
|
callback({
|
|
|
|
items: items
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (options.type === BI.MultiSelectCombo.REQ_GET_DATA_LENGTH) {
|
|
|
|
callback({count: items.length});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
callback({
|
|
|
|
items: items,
|
|
|
|
hasNext: false
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|