|
|
@ -97514,6 +97514,7 @@ BI.MultiSelectCombo = BI.inherit(BI.Single, { |
|
|
|
this.trigger = BI.createWidget({ |
|
|
|
this.trigger = BI.createWidget({ |
|
|
|
type: "bi.multi_select_trigger", |
|
|
|
type: "bi.multi_select_trigger", |
|
|
|
height: o.height, |
|
|
|
height: o.height, |
|
|
|
|
|
|
|
text: o.text, |
|
|
|
// adapter: this.popup,
|
|
|
|
// adapter: this.popup,
|
|
|
|
masker: { |
|
|
|
masker: { |
|
|
|
offset: { |
|
|
|
offset: { |
|
|
@ -97897,6 +97898,7 @@ BI.MultiSelectInsertCombo = BI.inherit(BI.Single, { |
|
|
|
this.trigger = BI.createWidget({ |
|
|
|
this.trigger = BI.createWidget({ |
|
|
|
type: "bi.multi_select_trigger", |
|
|
|
type: "bi.multi_select_trigger", |
|
|
|
height: o.height, |
|
|
|
height: o.height, |
|
|
|
|
|
|
|
text: o.text, |
|
|
|
// adapter: this.popup,
|
|
|
|
// adapter: this.popup,
|
|
|
|
masker: { |
|
|
|
masker: { |
|
|
|
offset: { |
|
|
|
offset: { |
|
|
@ -98263,6 +98265,7 @@ BI.MultiSelectInsertNoBarCombo = BI.inherit(BI.Single, { |
|
|
|
this.trigger = BI.createWidget({ |
|
|
|
this.trigger = BI.createWidget({ |
|
|
|
type: "bi.multi_select_trigger", |
|
|
|
type: "bi.multi_select_trigger", |
|
|
|
height: o.height, |
|
|
|
height: o.height, |
|
|
|
|
|
|
|
text: o.text, |
|
|
|
// adapter: this.popup,
|
|
|
|
// adapter: this.popup,
|
|
|
|
masker: { |
|
|
|
masker: { |
|
|
|
offset: { |
|
|
|
offset: { |
|
|
@ -99163,6 +99166,7 @@ BI.MultiSelectTrigger = BI.inherit(BI.Trigger, { |
|
|
|
this.searcher = BI.createWidget(o.searcher, { |
|
|
|
this.searcher = BI.createWidget(o.searcher, { |
|
|
|
type: "bi.multi_select_searcher", |
|
|
|
type: "bi.multi_select_searcher", |
|
|
|
height: o.height, |
|
|
|
height: o.height, |
|
|
|
|
|
|
|
text: o.text, |
|
|
|
itemsCreator: o.itemsCreator, |
|
|
|
itemsCreator: o.itemsCreator, |
|
|
|
valueFormatter: o.valueFormatter, |
|
|
|
valueFormatter: o.valueFormatter, |
|
|
|
popup: {}, |
|
|
|
popup: {}, |
|
|
@ -99704,7 +99708,8 @@ BI.MultiSelectSearcher = BI.inherit(BI.Widget, { |
|
|
|
popup: {}, |
|
|
|
popup: {}, |
|
|
|
valueFormatter: BI.emptyFn, |
|
|
|
valueFormatter: BI.emptyFn, |
|
|
|
adapter: null, |
|
|
|
adapter: null, |
|
|
|
masker: {} |
|
|
|
masker: {}, |
|
|
|
|
|
|
|
text: BI.i18nText("BI-Basic_Please_Select") |
|
|
|
}); |
|
|
|
}); |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
@ -99713,7 +99718,8 @@ BI.MultiSelectSearcher = BI.inherit(BI.Widget, { |
|
|
|
var self = this, o = this.options; |
|
|
|
var self = this, o = this.options; |
|
|
|
this.editor = BI.createWidget(o.el, { |
|
|
|
this.editor = BI.createWidget(o.el, { |
|
|
|
type: "bi.multi_select_editor", |
|
|
|
type: "bi.multi_select_editor", |
|
|
|
height: o.height |
|
|
|
height: o.height, |
|
|
|
|
|
|
|
text: o.text |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
this.searcher = BI.createWidget({ |
|
|
|
this.searcher = BI.createWidget({ |
|
|
@ -114243,5 +114249,6 @@ BI.i18n = { |
|
|
|
"BI-More_Than": "大于", |
|
|
|
"BI-More_Than": "大于", |
|
|
|
"BI-More_And_Equal": "大于等于", |
|
|
|
"BI-More_And_Equal": "大于等于", |
|
|
|
"BI-Please_Enter_SQL": "请输入SQL", |
|
|
|
"BI-Please_Enter_SQL": "请输入SQL", |
|
|
|
"BI-Basic_Click_To_Add_Text": "点击新增\"{R1}\"" |
|
|
|
"BI-Basic_Click_To_Add_Text": "点击新增\"{R1}\"", |
|
|
|
|
|
|
|
"BI-Basic_Please_Select": "请选择" |
|
|
|
}; |
|
|
|
}; |