forked from fanruan/fineui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
2.7 KiB
88 lines
2.7 KiB
7 years ago
|
BI.SearchMultiSelectPopupView = BI.inherit(BI.Widget, {
|
||
|
|
||
|
_defaultConfig: function () {
|
||
|
return BI.extend(BI.SearchMultiSelectPopupView.superclass._defaultConfig.apply(this, arguments), {
|
||
|
baseCls: "bi-multi-select-popup-view",
|
||
|
maxWidth: "auto",
|
||
|
minWidth: 135,
|
||
|
maxHeight: 400,
|
||
|
valueFormatter: BI.emptyFn,
|
||
|
itemsCreator: BI.emptyFn,
|
||
|
onLoaded: BI.emptyFn
|
||
|
});
|
||
|
},
|
||
|
|
||
|
_init: function () {
|
||
|
BI.SearchMultiSelectPopupView.superclass._init.apply(this, arguments);
|
||
|
var self = this, opts = this.options;
|
||
|
|
||
|
this.loader = BI.createWidget({
|
||
|
type: "bi.search_multi_select_loader",
|
||
|
itemsCreator: opts.itemsCreator,
|
||
|
valueFormatter: opts.valueFormatter,
|
||
|
onLoaded: opts.onLoaded,
|
||
|
value: opts.value
|
||
|
});
|
||
|
|
||
|
this.popupView = BI.createWidget({
|
||
|
type: "bi.multi_popup_view",
|
||
|
stopPropagation: false,
|
||
|
maxWidth: opts.maxWidth,
|
||
|
minWidth: opts.minWidth,
|
||
|
maxHeight: opts.maxHeight,
|
||
|
element: this,
|
||
|
buttons: [BI.i18nText("BI-Basic_Clears"), BI.i18nText("BI-Basic_Sure")],
|
||
|
el: this.loader,
|
||
|
value: opts.value
|
||
|
});
|
||
|
|
||
|
this.popupView.on(BI.MultiPopupView.EVENT_CHANGE, function () {
|
||
|
self.fireEvent(BI.SearchMultiSelectPopupView.EVENT_CHANGE);
|
||
|
});
|
||
|
this.popupView.on(BI.MultiPopupView.EVENT_CLICK_TOOLBAR_BUTTON, function (index) {
|
||
|
switch (index) {
|
||
|
case 0:
|
||
|
self.fireEvent(BI.SearchMultiSelectPopupView.EVENT_CLICK_CLEAR);
|
||
|
break;
|
||
|
case 1:
|
||
|
self.fireEvent(BI.SearchMultiSelectPopupView.EVENT_CLICK_CONFIRM);
|
||
|
break;
|
||
|
}
|
||
|
});
|
||
|
},
|
||
|
|
||
|
isAllSelected: function () {
|
||
|
return this.loader.isAllSelected();
|
||
|
},
|
||
|
|
||
|
setStartValue: function (v) {
|
||
|
this.loader.setStartValue(v);
|
||
|
},
|
||
|
|
||
|
setValue: function (v) {
|
||
|
this.popupView.setValue(v);
|
||
|
},
|
||
|
|
||
|
getValue: function () {
|
||
|
return this.popupView.getValue();
|
||
|
},
|
||
|
|
||
|
populate: function (items) {
|
||
|
this.popupView.populate.apply(this.popupView, arguments);
|
||
|
},
|
||
|
|
||
|
resetHeight: function (h) {
|
||
|
this.popupView.resetHeight(h);
|
||
|
},
|
||
|
|
||
|
resetWidth: function (w) {
|
||
|
this.popupView.resetWidth(w);
|
||
|
}
|
||
|
});
|
||
|
|
||
|
BI.SearchMultiSelectPopupView.EVENT_CHANGE = "EVENT_CHANGE";
|
||
|
BI.SearchMultiSelectPopupView.EVENT_CLICK_CONFIRM = "EVENT_CLICK_CONFIRM";
|
||
|
BI.SearchMultiSelectPopupView.EVENT_CLICK_CLEAR = "EVENT_CLICK_CLEAR";
|
||
|
|
||
|
|
||
|
BI.shortcut("bi.search_multi_select_popup_view", BI.SearchMultiSelectPopupView);
|