diff --git a/dist/2.0/fineui.ie.js b/dist/2.0/fineui.ie.js index 4c598fc94..cc9523147 100644 --- a/dist/2.0/fineui.ie.js +++ b/dist/2.0/fineui.ie.js @@ -54392,6 +54392,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, { } }] }, + value: o.value, maxHeight: 252 }, listeners: [{ @@ -54471,7 +54472,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, { }, getValue: function () { - var value = this.popup.getValue(); + var value = this.combo.getValue(); return BI.isNull(value) ? [] : (BI.isArray(value) ? value : [value]); } }); diff --git a/dist/2.0/fineui.js b/dist/2.0/fineui.js index 4ea66dc98..ced141517 100644 --- a/dist/2.0/fineui.js +++ b/dist/2.0/fineui.js @@ -54796,6 +54796,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, { } }] }, + value: o.value, maxHeight: 252 }, listeners: [{ @@ -54875,7 +54876,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, { }, getValue: function () { - var value = this.popup.getValue(); + var value = this.combo.getValue(); return BI.isNull(value) ? [] : (BI.isArray(value) ? value : [value]); } }); diff --git a/dist/bundle.ie.js b/dist/bundle.ie.js index 4c598fc94..cc9523147 100644 --- a/dist/bundle.ie.js +++ b/dist/bundle.ie.js @@ -54392,6 +54392,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, { } }] }, + value: o.value, maxHeight: 252 }, listeners: [{ @@ -54471,7 +54472,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, { }, getValue: function () { - var value = this.popup.getValue(); + var value = this.combo.getValue(); return BI.isNull(value) ? [] : (BI.isArray(value) ? value : [value]); } }); diff --git a/dist/bundle.js b/dist/bundle.js index 4ea66dc98..ced141517 100644 --- a/dist/bundle.js +++ b/dist/bundle.js @@ -54796,6 +54796,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, { } }] }, + value: o.value, maxHeight: 252 }, listeners: [{ @@ -54875,7 +54876,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, { }, getValue: function () { - var value = this.popup.getValue(); + var value = this.combo.getValue(); return BI.isNull(value) ? [] : (BI.isArray(value) ? value : [value]); } }); diff --git a/dist/case.js b/dist/case.js index f1610aed8..5890a0020 100644 --- a/dist/case.js +++ b/dist/case.js @@ -4681,6 +4681,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, { } }] }, + value: o.value, maxHeight: 252 }, listeners: [{ @@ -4760,7 +4761,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, { }, getValue: function () { - var value = this.popup.getValue(); + var value = this.combo.getValue(); return BI.isNull(value) ? [] : (BI.isArray(value) ? value : [value]); } }); diff --git a/dist/fineui.ie.js b/dist/fineui.ie.js index 67a2cf3bb..f3ea68d52 100644 --- a/dist/fineui.ie.js +++ b/dist/fineui.ie.js @@ -54637,6 +54637,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, { } }] }, + value: o.value, maxHeight: 252 }, listeners: [{ @@ -54716,7 +54717,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, { }, getValue: function () { - var value = this.popup.getValue(); + var value = this.combo.getValue(); return BI.isNull(value) ? [] : (BI.isArray(value) ? value : [value]); } }); diff --git a/dist/fineui.js b/dist/fineui.js index 79c811ce5..13d29dfe6 100644 --- a/dist/fineui.js +++ b/dist/fineui.js @@ -55041,6 +55041,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, { } }] }, + value: o.value, maxHeight: 252 }, listeners: [{ @@ -55120,7 +55121,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, { }, getValue: function () { - var value = this.popup.getValue(); + var value = this.combo.getValue(); return BI.isNull(value) ? [] : (BI.isArray(value) ? value : [value]); } }); diff --git a/dist/fineui_without_jquery_polyfill.js b/dist/fineui_without_jquery_polyfill.js index 7694fbcfc..235345759 100644 --- a/dist/fineui_without_jquery_polyfill.js +++ b/dist/fineui_without_jquery_polyfill.js @@ -38063,6 +38063,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, { } }] }, + value: o.value, maxHeight: 252 }, listeners: [{ @@ -38142,7 +38143,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, { }, getValue: function () { - var value = this.popup.getValue(); + var value = this.combo.getValue(); return BI.isNull(value) ? [] : (BI.isArray(value) ? value : [value]); } }); diff --git a/src/case/combo/searchtextvaluecombo/combo.searchtextvalue.js b/src/case/combo/searchtextvaluecombo/combo.searchtextvalue.js index e51de662e..13c4f3b38 100644 --- a/src/case/combo/searchtextvaluecombo/combo.searchtextvalue.js +++ b/src/case/combo/searchtextvaluecombo/combo.searchtextvalue.js @@ -69,6 +69,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, { } }] }, + value: o.value, maxHeight: 252 }, listeners: [{ @@ -148,7 +149,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, { }, getValue: function () { - var value = this.popup.getValue(); + var value = this.combo.getValue(); return BI.isNull(value) ? [] : (BI.isArray(value) ? value : [value]); } });