|
|
@ -73194,6 +73194,7 @@ BI.NumberInterval.EVENT_VALID = "EVENT_VALID"; |
|
|
|
BI.NumberInterval.EVENT_ERROR = "EVENT_ERROR"; |
|
|
|
BI.NumberInterval.EVENT_ERROR = "EVENT_ERROR"; |
|
|
|
BI.shortcut("bi.number_interval", BI.NumberInterval);BI.NumberIntervalSingleEidtor = BI.inherit(BI.Single, { |
|
|
|
BI.shortcut("bi.number_interval", BI.NumberInterval);BI.NumberIntervalSingleEidtor = BI.inherit(BI.Single, { |
|
|
|
props: { |
|
|
|
props: { |
|
|
|
|
|
|
|
baseCls: "bi-number-interval-single-editor", |
|
|
|
tipType: "success", |
|
|
|
tipType: "success", |
|
|
|
title: "" |
|
|
|
title: "" |
|
|
|
}, |
|
|
|
}, |
|
|
@ -75501,6 +75502,7 @@ BI.SingleSelectCombo = BI.inherit(BI.Single, { |
|
|
|
callback.apply(self, arguments); |
|
|
|
callback.apply(self, arguments); |
|
|
|
}); |
|
|
|
}); |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
text: o.text, |
|
|
|
value: this.storeValue |
|
|
|
value: this.storeValue |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
@ -75770,6 +75772,7 @@ BI.SingleSelectInsertCombo = BI.inherit(BI.Single, { |
|
|
|
callback.apply(self, arguments); |
|
|
|
callback.apply(self, arguments); |
|
|
|
}); |
|
|
|
}); |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
text: o.text, |
|
|
|
value: this.storeValue |
|
|
|
value: this.storeValue |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
@ -76452,6 +76455,7 @@ BI.SingleSelectTrigger = BI.inherit(BI.Trigger, { |
|
|
|
|
|
|
|
|
|
|
|
this.searcher = BI.createWidget(o.searcher, { |
|
|
|
this.searcher = BI.createWidget(o.searcher, { |
|
|
|
type: "bi.single_select_searcher", |
|
|
|
type: "bi.single_select_searcher", |
|
|
|
|
|
|
|
text: o.text, |
|
|
|
height: o.height, |
|
|
|
height: o.height, |
|
|
|
itemsCreator: o.itemsCreator, |
|
|
|
itemsCreator: o.itemsCreator, |
|
|
|
valueFormatter: o.valueFormatter, |
|
|
|
valueFormatter: o.valueFormatter, |
|
|
@ -76782,7 +76786,8 @@ BI.SingleSelectEditor = BI.inherit(BI.Widget, { |
|
|
|
height: o.height, |
|
|
|
height: o.height, |
|
|
|
watermark: BI.i18nText("BI-Basic_Search"), |
|
|
|
watermark: BI.i18nText("BI-Basic_Search"), |
|
|
|
allowBlank: true, |
|
|
|
allowBlank: true, |
|
|
|
value: o.value |
|
|
|
value: o.value, |
|
|
|
|
|
|
|
text: o.text |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
this.editor.on(BI.Controller.EVENT_CHANGE, function () { |
|
|
|
this.editor.on(BI.Controller.EVENT_CHANGE, function () { |
|
|
@ -76861,7 +76866,8 @@ BI.SingleSelectSearcher = 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.single_select_editor", |
|
|
|
type: "bi.single_select_editor", |
|
|
|
height: o.height |
|
|
|
height: o.height, |
|
|
|
|
|
|
|
text: o.text |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
this.searcher = BI.createWidget({ |
|
|
|
this.searcher = BI.createWidget({ |
|
|
|