|
|
|
@ -78478,7 +78478,9 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
|
|
|
|
|
baseCls: "bi-search-text-value-combo", |
|
|
|
|
height: 30, |
|
|
|
|
text: "", |
|
|
|
|
items: [] |
|
|
|
|
items: [], |
|
|
|
|
tipType: "", |
|
|
|
|
warningTitle: "" |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
render: function () { |
|
|
|
@ -78502,6 +78504,8 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
|
|
|
|
|
height: o.height - 2, |
|
|
|
|
text: o.text, |
|
|
|
|
value: o.value, |
|
|
|
|
tipType: o.tipType, |
|
|
|
|
warningTitle: o.warningTitle, |
|
|
|
|
listeners: [{ |
|
|
|
|
eventName: BI.SearchTextValueTrigger.EVENT_CHANGE, |
|
|
|
|
action: function () { |
|
|
|
@ -104955,8 +104959,8 @@ BI.SingleSelectInsertList = BI.inherit(BI.Widget, {
|
|
|
|
|
return self.trigger.getKeyword(); |
|
|
|
|
}, |
|
|
|
|
itemsCreator: function (op, callback) { |
|
|
|
|
op.keyword = self.trigger.getKeyword(); |
|
|
|
|
this.setKeyword(op.keyword); |
|
|
|
|
op.keywords = [self.trigger.getKeyword()]; |
|
|
|
|
this.setKeyword(op.keywords[0]); |
|
|
|
|
o.itemsCreator(op, callback); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|