|
|
|
@ -68679,6 +68679,7 @@ BI.MultiLayerSelectTreeCombo = BI.inherit(BI.Widget, {
|
|
|
|
|
items: o.items, |
|
|
|
|
itemsCreator: o.itemsCreator, |
|
|
|
|
valueFormatter: o.valueFormatter, |
|
|
|
|
watermark: o.watermark, |
|
|
|
|
height: o.height - 2, |
|
|
|
|
text: o.text, |
|
|
|
|
value: o.value, |
|
|
|
@ -69017,7 +69018,8 @@ BI.MultiLayerSelectTreeTrigger = BI.inherit(BI.Trigger, {
|
|
|
|
|
valueFormatter: function (v) { |
|
|
|
|
return v; |
|
|
|
|
}, |
|
|
|
|
itemsCreator: BI.emptyFn |
|
|
|
|
itemsCreator: BI.emptyFn, |
|
|
|
|
watermark: BI.i18nText("BI-Basic_Search") |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
render: function () { |
|
|
|
@ -69046,7 +69048,7 @@ BI.MultiLayerSelectTreeTrigger = BI.inherit(BI.Trigger, {
|
|
|
|
|
value: o.value, |
|
|
|
|
height: o.height, |
|
|
|
|
tipText: "", |
|
|
|
|
watermark: BI.i18nText("BI-Basic_Search"), |
|
|
|
|
watermark: o.watermark, |
|
|
|
|
listeners: [{ |
|
|
|
|
eventName: BI.StateEditor.EVENT_FOCUS, |
|
|
|
|
action: function () { |
|
|
|
@ -69687,6 +69689,7 @@ BI.MultiLayerSingleTreeCombo = BI.inherit(BI.Widget, {
|
|
|
|
|
ref: function (_ref) { |
|
|
|
|
self.trigger = _ref; |
|
|
|
|
}, |
|
|
|
|
watermark: o.watermark, |
|
|
|
|
items: o.items, |
|
|
|
|
itemsCreator: o.itemsCreator, |
|
|
|
|
valueFormatter: o.valueFormatter, |
|
|
|
@ -70027,7 +70030,8 @@ BI.MultiLayerSingleTreeTrigger = BI.inherit(BI.Trigger, {
|
|
|
|
|
valueFormatter: function (v) { |
|
|
|
|
return v; |
|
|
|
|
}, |
|
|
|
|
itemsCreator: BI.emptyFn |
|
|
|
|
itemsCreator: BI.emptyFn, |
|
|
|
|
watermark: BI.i18nText("BI-Basic_Search") |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
render: function () { |
|
|
|
@ -70056,7 +70060,7 @@ BI.MultiLayerSingleTreeTrigger = BI.inherit(BI.Trigger, {
|
|
|
|
|
value: o.value, |
|
|
|
|
height: o.height, |
|
|
|
|
tipText: "", |
|
|
|
|
watermark: BI.i18nText("BI-Basic_Search"), |
|
|
|
|
watermark: o.watermark, |
|
|
|
|
listeners: [{ |
|
|
|
|
eventName: BI.StateEditor.EVENT_FOCUS, |
|
|
|
|
action: function () { |
|
|
|
@ -71507,6 +71511,7 @@ BI.MultiSelectInsertCombo = BI.inherit(BI.Single, {
|
|
|
|
|
allowEdit: o.allowEdit, |
|
|
|
|
height: o.height, |
|
|
|
|
text: o.text, |
|
|
|
|
watermark: o.watermark, |
|
|
|
|
// adapter: this.popup,
|
|
|
|
|
masker: { |
|
|
|
|
offset: { |
|
|
|
@ -72307,6 +72312,7 @@ BI.MultiSelectInsertTrigger = BI.inherit(BI.Trigger, {
|
|
|
|
|
text: o.text, |
|
|
|
|
itemsCreator: o.itemsCreator, |
|
|
|
|
valueFormatter: o.valueFormatter, |
|
|
|
|
watermark: o.watermark, |
|
|
|
|
popup: {}, |
|
|
|
|
adapter: o.adapter, |
|
|
|
|
masker: o.masker, |
|
|
|
@ -73033,6 +73039,7 @@ BI.MultiSelectTrigger = BI.inherit(BI.Trigger, {
|
|
|
|
|
text: o.text, |
|
|
|
|
itemsCreator: o.itemsCreator, |
|
|
|
|
valueFormatter: o.valueFormatter, |
|
|
|
|
watermark: o.watermark, |
|
|
|
|
popup: {}, |
|
|
|
|
adapter: o.adapter, |
|
|
|
|
masker: o.masker, |
|
|
|
@ -73631,7 +73638,8 @@ BI.MultiSelectEditor = BI.inherit(BI.Widget, {
|
|
|
|
|
_defaultConfig: function () { |
|
|
|
|
return BI.extend(BI.MultiSelectEditor.superclass._defaultConfig.apply(this, arguments), { |
|
|
|
|
baseCls: "bi-multi-select-editor", |
|
|
|
|
el: {} |
|
|
|
|
el: {}, |
|
|
|
|
watermark: BI.i18nText("BI-Basic_Search") |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
@ -73642,7 +73650,7 @@ BI.MultiSelectEditor = BI.inherit(BI.Widget, {
|
|
|
|
|
type: "bi.state_editor", |
|
|
|
|
element: this, |
|
|
|
|
height: o.height, |
|
|
|
|
watermark: BI.i18nText("BI-Basic_Search"), |
|
|
|
|
watermark: o.watermark, |
|
|
|
|
allowBlank: true, |
|
|
|
|
value: o.value, |
|
|
|
|
defaultText: o.text, |
|
|
|
@ -73739,6 +73747,7 @@ BI.MultiSelectInsertSearcher = BI.inherit(BI.Widget, {
|
|
|
|
|
var self = this, o = this.options; |
|
|
|
|
this.editor = BI.createWidget(o.el, { |
|
|
|
|
type: "bi.multi_select_editor", |
|
|
|
|
watermark: o.watermark, |
|
|
|
|
height: o.height, |
|
|
|
|
text: o.text, |
|
|
|
|
listeners: [{ |
|
|
|
@ -75903,6 +75912,7 @@ BI.MultiTreeInsertCombo = BI.inherit(BI.Single, {
|
|
|
|
|
searcher: { |
|
|
|
|
type: "bi.multi_tree_searcher", |
|
|
|
|
text: o.text, |
|
|
|
|
watermark: o.watermark, |
|
|
|
|
itemsCreator: o.itemsCreator, |
|
|
|
|
popup: { |
|
|
|
|
type: "bi.multi_tree_search_insert_pane", |
|
|
|
@ -77009,7 +77019,7 @@ BI.MultiTreeSearcher = BI.inherit(BI.Widget, {
|
|
|
|
|
popup: {}, |
|
|
|
|
|
|
|
|
|
adapter: null, |
|
|
|
|
masker: {} |
|
|
|
|
masker: {}, |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
@ -77018,6 +77028,7 @@ BI.MultiTreeSearcher = BI.inherit(BI.Widget, {
|
|
|
|
|
var self = this, o = this.options; |
|
|
|
|
this.editor = BI.createWidget({ |
|
|
|
|
type: "bi.multi_select_editor", |
|
|
|
|
watermark: o.watermark, |
|
|
|
|
height: o.height, |
|
|
|
|
el: { |
|
|
|
|
type: "bi.simple_state_editor", |
|
|
|
|