From 6c8a483da53480859662d0b1eed89bd49a47b103 Mon Sep 17 00:00:00 2001 From: windy <1374721899@qq.com> Date: Mon, 15 Apr 2019 15:03:46 +0800 Subject: [PATCH] =?UTF-8?q?=E6=97=A0JIRA=E4=BB=BB=E5=8A=A1=20=E9=BB=98?= =?UTF-8?q?=E8=AE=A4=E9=AB=98=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dist/2.0/fineui.ie.js | 20 +++++++++++++------ dist/2.0/fineui.js | 20 +++++++++++++------ dist/bundle.ie.js | 20 +++++++++++++------ dist/bundle.js | 20 +++++++++++++------ dist/core.js | 12 +++++++++-- dist/fineui.ie.js | 20 +++++++++++++------ dist/fineui.js | 20 +++++++++++++------ dist/fineui_without_jquery_polyfill.js | 20 +++++++++++++------ dist/widget.js | 8 ++++---- .../allvaluechooser/combo.allvaluechooser.js | 2 +- .../allvalue.multitextvalue.combo.js | 2 +- .../combo.treevaluechooser.js | 2 +- .../valuechooser/combo.valuechooser.js | 2 +- 13 files changed, 116 insertions(+), 52 deletions(-) diff --git a/dist/2.0/fineui.ie.js b/dist/2.0/fineui.ie.js index 70c59dddb..09146fc49 100644 --- a/dist/2.0/fineui.ie.js +++ b/dist/2.0/fineui.ie.js @@ -30970,7 +30970,11 @@ BI.TableAdaptLayout = BI.inherit(BI.Layout, { td = this.getWidgetByName(this._getChildName(i)); td.element.width(width); } - td.element.css({"max-width": o.columnSize[i] + "px"}); + // 对于表现为td的元素设置最大宽度,有几点需要注意 + // 1、由于直接对td设置最大宽度是在规范中未定义的, 所以要使用类似td:firstChild来迂回实现 + // 2、不能给多个td设置最大宽度,这样只会平分宽度 + // 3、多百分比宽度就算了 + td.element.css({"max-width": o.columnSize[i] <= 1 ? width : width + "px"}); if (i === 0) { td.element.addClass("first-element"); } @@ -33070,7 +33074,11 @@ BI.HorizontalLayout = BI.inherit(BI.Layout, { td = this.getWidgetByName(this._getChildName(i)); td.element.attr("width", width); } - td.element.css({"max-width": o.columnSize[i] + "px"}); + // 对于表现为td的元素设置最大宽度,有几点需要注意 + // 1、由于直接对td设置最大宽度是在规范中未定义的, 所以要使用类似td:firstChild来迂回实现 + // 2、不能给多个td设置最大宽度,这样只会平分宽度 + // 3、多百分比宽度就算了 + td.element.css({"max-width": o.columnSize[i] <= 1 ? width : width + "px"}); if (i === 0) { td.element.addClass("first-element"); } @@ -82308,7 +82316,7 @@ BI.AllValueChooserCombo = BI.inherit(BI.AbstractAllValueChooser, { return BI.extend(BI.AllValueChooserCombo.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-all-value-chooser-combo", width: 200, - height: 30, + height: 24, items: null, itemsCreator: BI.emptyFn, cache: true @@ -82430,7 +82438,7 @@ BI.shortcut("bi.all_value_chooser_pane", BI.AllValueChooserPane);BI.AllValueMult props: { baseCls: "bi-all-value-multi-text-value-combo", width: 200, - height: 30, + height: 24, items: [] }, @@ -83177,7 +83185,7 @@ BI.TreeValueChooserCombo = BI.inherit(BI.AbstractTreeValueChooser, { return BI.extend(BI.TreeValueChooserCombo.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-tree-value-chooser-combo", width: 200, - height: 30, + height: 24, items: null, itemsCreator: BI.emptyFn }); @@ -83369,7 +83377,7 @@ BI.ValueChooserCombo = BI.inherit(BI.AbstractValueChooser, { return BI.extend(BI.ValueChooserCombo.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-value-chooser-combo", width: 200, - height: 30, + height: 24, items: null, itemsCreator: BI.emptyFn, cache: true diff --git a/dist/2.0/fineui.js b/dist/2.0/fineui.js index acdf002ce..84fe0e67b 100644 --- a/dist/2.0/fineui.js +++ b/dist/2.0/fineui.js @@ -30970,7 +30970,11 @@ BI.TableAdaptLayout = BI.inherit(BI.Layout, { td = this.getWidgetByName(this._getChildName(i)); td.element.width(width); } - td.element.css({"max-width": o.columnSize[i] + "px"}); + // 对于表现为td的元素设置最大宽度,有几点需要注意 + // 1、由于直接对td设置最大宽度是在规范中未定义的, 所以要使用类似td:firstChild来迂回实现 + // 2、不能给多个td设置最大宽度,这样只会平分宽度 + // 3、多百分比宽度就算了 + td.element.css({"max-width": o.columnSize[i] <= 1 ? width : width + "px"}); if (i === 0) { td.element.addClass("first-element"); } @@ -33070,7 +33074,11 @@ BI.HorizontalLayout = BI.inherit(BI.Layout, { td = this.getWidgetByName(this._getChildName(i)); td.element.attr("width", width); } - td.element.css({"max-width": o.columnSize[i] + "px"}); + // 对于表现为td的元素设置最大宽度,有几点需要注意 + // 1、由于直接对td设置最大宽度是在规范中未定义的, 所以要使用类似td:firstChild来迂回实现 + // 2、不能给多个td设置最大宽度,这样只会平分宽度 + // 3、多百分比宽度就算了 + td.element.css({"max-width": o.columnSize[i] <= 1 ? width : width + "px"}); if (i === 0) { td.element.addClass("first-element"); } @@ -82712,7 +82720,7 @@ BI.AllValueChooserCombo = BI.inherit(BI.AbstractAllValueChooser, { return BI.extend(BI.AllValueChooserCombo.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-all-value-chooser-combo", width: 200, - height: 30, + height: 24, items: null, itemsCreator: BI.emptyFn, cache: true @@ -82834,7 +82842,7 @@ BI.shortcut("bi.all_value_chooser_pane", BI.AllValueChooserPane);BI.AllValueMult props: { baseCls: "bi-all-value-multi-text-value-combo", width: 200, - height: 30, + height: 24, items: [] }, @@ -83581,7 +83589,7 @@ BI.TreeValueChooserCombo = BI.inherit(BI.AbstractTreeValueChooser, { return BI.extend(BI.TreeValueChooserCombo.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-tree-value-chooser-combo", width: 200, - height: 30, + height: 24, items: null, itemsCreator: BI.emptyFn }); @@ -83773,7 +83781,7 @@ BI.ValueChooserCombo = BI.inherit(BI.AbstractValueChooser, { return BI.extend(BI.ValueChooserCombo.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-value-chooser-combo", width: 200, - height: 30, + height: 24, items: null, itemsCreator: BI.emptyFn, cache: true diff --git a/dist/bundle.ie.js b/dist/bundle.ie.js index 70c59dddb..09146fc49 100644 --- a/dist/bundle.ie.js +++ b/dist/bundle.ie.js @@ -30970,7 +30970,11 @@ BI.TableAdaptLayout = BI.inherit(BI.Layout, { td = this.getWidgetByName(this._getChildName(i)); td.element.width(width); } - td.element.css({"max-width": o.columnSize[i] + "px"}); + // 对于表现为td的元素设置最大宽度,有几点需要注意 + // 1、由于直接对td设置最大宽度是在规范中未定义的, 所以要使用类似td:firstChild来迂回实现 + // 2、不能给多个td设置最大宽度,这样只会平分宽度 + // 3、多百分比宽度就算了 + td.element.css({"max-width": o.columnSize[i] <= 1 ? width : width + "px"}); if (i === 0) { td.element.addClass("first-element"); } @@ -33070,7 +33074,11 @@ BI.HorizontalLayout = BI.inherit(BI.Layout, { td = this.getWidgetByName(this._getChildName(i)); td.element.attr("width", width); } - td.element.css({"max-width": o.columnSize[i] + "px"}); + // 对于表现为td的元素设置最大宽度,有几点需要注意 + // 1、由于直接对td设置最大宽度是在规范中未定义的, 所以要使用类似td:firstChild来迂回实现 + // 2、不能给多个td设置最大宽度,这样只会平分宽度 + // 3、多百分比宽度就算了 + td.element.css({"max-width": o.columnSize[i] <= 1 ? width : width + "px"}); if (i === 0) { td.element.addClass("first-element"); } @@ -82308,7 +82316,7 @@ BI.AllValueChooserCombo = BI.inherit(BI.AbstractAllValueChooser, { return BI.extend(BI.AllValueChooserCombo.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-all-value-chooser-combo", width: 200, - height: 30, + height: 24, items: null, itemsCreator: BI.emptyFn, cache: true @@ -82430,7 +82438,7 @@ BI.shortcut("bi.all_value_chooser_pane", BI.AllValueChooserPane);BI.AllValueMult props: { baseCls: "bi-all-value-multi-text-value-combo", width: 200, - height: 30, + height: 24, items: [] }, @@ -83177,7 +83185,7 @@ BI.TreeValueChooserCombo = BI.inherit(BI.AbstractTreeValueChooser, { return BI.extend(BI.TreeValueChooserCombo.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-tree-value-chooser-combo", width: 200, - height: 30, + height: 24, items: null, itemsCreator: BI.emptyFn }); @@ -83369,7 +83377,7 @@ BI.ValueChooserCombo = BI.inherit(BI.AbstractValueChooser, { return BI.extend(BI.ValueChooserCombo.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-value-chooser-combo", width: 200, - height: 30, + height: 24, items: null, itemsCreator: BI.emptyFn, cache: true diff --git a/dist/bundle.js b/dist/bundle.js index acdf002ce..84fe0e67b 100644 --- a/dist/bundle.js +++ b/dist/bundle.js @@ -30970,7 +30970,11 @@ BI.TableAdaptLayout = BI.inherit(BI.Layout, { td = this.getWidgetByName(this._getChildName(i)); td.element.width(width); } - td.element.css({"max-width": o.columnSize[i] + "px"}); + // 对于表现为td的元素设置最大宽度,有几点需要注意 + // 1、由于直接对td设置最大宽度是在规范中未定义的, 所以要使用类似td:firstChild来迂回实现 + // 2、不能给多个td设置最大宽度,这样只会平分宽度 + // 3、多百分比宽度就算了 + td.element.css({"max-width": o.columnSize[i] <= 1 ? width : width + "px"}); if (i === 0) { td.element.addClass("first-element"); } @@ -33070,7 +33074,11 @@ BI.HorizontalLayout = BI.inherit(BI.Layout, { td = this.getWidgetByName(this._getChildName(i)); td.element.attr("width", width); } - td.element.css({"max-width": o.columnSize[i] + "px"}); + // 对于表现为td的元素设置最大宽度,有几点需要注意 + // 1、由于直接对td设置最大宽度是在规范中未定义的, 所以要使用类似td:firstChild来迂回实现 + // 2、不能给多个td设置最大宽度,这样只会平分宽度 + // 3、多百分比宽度就算了 + td.element.css({"max-width": o.columnSize[i] <= 1 ? width : width + "px"}); if (i === 0) { td.element.addClass("first-element"); } @@ -82712,7 +82720,7 @@ BI.AllValueChooserCombo = BI.inherit(BI.AbstractAllValueChooser, { return BI.extend(BI.AllValueChooserCombo.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-all-value-chooser-combo", width: 200, - height: 30, + height: 24, items: null, itemsCreator: BI.emptyFn, cache: true @@ -82834,7 +82842,7 @@ BI.shortcut("bi.all_value_chooser_pane", BI.AllValueChooserPane);BI.AllValueMult props: { baseCls: "bi-all-value-multi-text-value-combo", width: 200, - height: 30, + height: 24, items: [] }, @@ -83581,7 +83589,7 @@ BI.TreeValueChooserCombo = BI.inherit(BI.AbstractTreeValueChooser, { return BI.extend(BI.TreeValueChooserCombo.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-tree-value-chooser-combo", width: 200, - height: 30, + height: 24, items: null, itemsCreator: BI.emptyFn }); @@ -83773,7 +83781,7 @@ BI.ValueChooserCombo = BI.inherit(BI.AbstractValueChooser, { return BI.extend(BI.ValueChooserCombo.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-value-chooser-combo", width: 200, - height: 30, + height: 24, items: null, itemsCreator: BI.emptyFn, cache: true diff --git a/dist/core.js b/dist/core.js index 6e4cef591..8e7e72ed3 100644 --- a/dist/core.js +++ b/dist/core.js @@ -30970,7 +30970,11 @@ BI.TableAdaptLayout = BI.inherit(BI.Layout, { td = this.getWidgetByName(this._getChildName(i)); td.element.width(width); } - td.element.css({"max-width": o.columnSize[i] + "px"}); + // 对于表现为td的元素设置最大宽度,有几点需要注意 + // 1、由于直接对td设置最大宽度是在规范中未定义的, 所以要使用类似td:firstChild来迂回实现 + // 2、不能给多个td设置最大宽度,这样只会平分宽度 + // 3、多百分比宽度就算了 + td.element.css({"max-width": o.columnSize[i] <= 1 ? width : width + "px"}); if (i === 0) { td.element.addClass("first-element"); } @@ -33070,7 +33074,11 @@ BI.HorizontalLayout = BI.inherit(BI.Layout, { td = this.getWidgetByName(this._getChildName(i)); td.element.attr("width", width); } - td.element.css({"max-width": o.columnSize[i] + "px"}); + // 对于表现为td的元素设置最大宽度,有几点需要注意 + // 1、由于直接对td设置最大宽度是在规范中未定义的, 所以要使用类似td:firstChild来迂回实现 + // 2、不能给多个td设置最大宽度,这样只会平分宽度 + // 3、多百分比宽度就算了 + td.element.css({"max-width": o.columnSize[i] <= 1 ? width : width + "px"}); if (i === 0) { td.element.addClass("first-element"); } diff --git a/dist/fineui.ie.js b/dist/fineui.ie.js index 6e0f8b27d..af37ac536 100644 --- a/dist/fineui.ie.js +++ b/dist/fineui.ie.js @@ -31215,7 +31215,11 @@ BI.TableAdaptLayout = BI.inherit(BI.Layout, { td = this.getWidgetByName(this._getChildName(i)); td.element.width(width); } - td.element.css({"max-width": o.columnSize[i] + "px"}); + // 对于表现为td的元素设置最大宽度,有几点需要注意 + // 1、由于直接对td设置最大宽度是在规范中未定义的, 所以要使用类似td:firstChild来迂回实现 + // 2、不能给多个td设置最大宽度,这样只会平分宽度 + // 3、多百分比宽度就算了 + td.element.css({"max-width": o.columnSize[i] <= 1 ? width : width + "px"}); if (i === 0) { td.element.addClass("first-element"); } @@ -33315,7 +33319,11 @@ BI.HorizontalLayout = BI.inherit(BI.Layout, { td = this.getWidgetByName(this._getChildName(i)); td.element.attr("width", width); } - td.element.css({"max-width": o.columnSize[i] + "px"}); + // 对于表现为td的元素设置最大宽度,有几点需要注意 + // 1、由于直接对td设置最大宽度是在规范中未定义的, 所以要使用类似td:firstChild来迂回实现 + // 2、不能给多个td设置最大宽度,这样只会平分宽度 + // 3、多百分比宽度就算了 + td.element.css({"max-width": o.columnSize[i] <= 1 ? width : width + "px"}); if (i === 0) { td.element.addClass("first-element"); } @@ -82553,7 +82561,7 @@ BI.AllValueChooserCombo = BI.inherit(BI.AbstractAllValueChooser, { return BI.extend(BI.AllValueChooserCombo.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-all-value-chooser-combo", width: 200, - height: 30, + height: 24, items: null, itemsCreator: BI.emptyFn, cache: true @@ -82675,7 +82683,7 @@ BI.shortcut("bi.all_value_chooser_pane", BI.AllValueChooserPane);BI.AllValueMult props: { baseCls: "bi-all-value-multi-text-value-combo", width: 200, - height: 30, + height: 24, items: [] }, @@ -83422,7 +83430,7 @@ BI.TreeValueChooserCombo = BI.inherit(BI.AbstractTreeValueChooser, { return BI.extend(BI.TreeValueChooserCombo.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-tree-value-chooser-combo", width: 200, - height: 30, + height: 24, items: null, itemsCreator: BI.emptyFn }); @@ -83614,7 +83622,7 @@ BI.ValueChooserCombo = BI.inherit(BI.AbstractValueChooser, { return BI.extend(BI.ValueChooserCombo.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-value-chooser-combo", width: 200, - height: 30, + height: 24, items: null, itemsCreator: BI.emptyFn, cache: true diff --git a/dist/fineui.js b/dist/fineui.js index ac266338b..6e7119e94 100644 --- a/dist/fineui.js +++ b/dist/fineui.js @@ -31215,7 +31215,11 @@ BI.TableAdaptLayout = BI.inherit(BI.Layout, { td = this.getWidgetByName(this._getChildName(i)); td.element.width(width); } - td.element.css({"max-width": o.columnSize[i] + "px"}); + // 对于表现为td的元素设置最大宽度,有几点需要注意 + // 1、由于直接对td设置最大宽度是在规范中未定义的, 所以要使用类似td:firstChild来迂回实现 + // 2、不能给多个td设置最大宽度,这样只会平分宽度 + // 3、多百分比宽度就算了 + td.element.css({"max-width": o.columnSize[i] <= 1 ? width : width + "px"}); if (i === 0) { td.element.addClass("first-element"); } @@ -33315,7 +33319,11 @@ BI.HorizontalLayout = BI.inherit(BI.Layout, { td = this.getWidgetByName(this._getChildName(i)); td.element.attr("width", width); } - td.element.css({"max-width": o.columnSize[i] + "px"}); + // 对于表现为td的元素设置最大宽度,有几点需要注意 + // 1、由于直接对td设置最大宽度是在规范中未定义的, 所以要使用类似td:firstChild来迂回实现 + // 2、不能给多个td设置最大宽度,这样只会平分宽度 + // 3、多百分比宽度就算了 + td.element.css({"max-width": o.columnSize[i] <= 1 ? width : width + "px"}); if (i === 0) { td.element.addClass("first-element"); } @@ -82957,7 +82965,7 @@ BI.AllValueChooserCombo = BI.inherit(BI.AbstractAllValueChooser, { return BI.extend(BI.AllValueChooserCombo.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-all-value-chooser-combo", width: 200, - height: 30, + height: 24, items: null, itemsCreator: BI.emptyFn, cache: true @@ -83079,7 +83087,7 @@ BI.shortcut("bi.all_value_chooser_pane", BI.AllValueChooserPane);BI.AllValueMult props: { baseCls: "bi-all-value-multi-text-value-combo", width: 200, - height: 30, + height: 24, items: [] }, @@ -83826,7 +83834,7 @@ BI.TreeValueChooserCombo = BI.inherit(BI.AbstractTreeValueChooser, { return BI.extend(BI.TreeValueChooserCombo.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-tree-value-chooser-combo", width: 200, - height: 30, + height: 24, items: null, itemsCreator: BI.emptyFn }); @@ -84018,7 +84026,7 @@ BI.ValueChooserCombo = BI.inherit(BI.AbstractValueChooser, { return BI.extend(BI.ValueChooserCombo.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-value-chooser-combo", width: 200, - height: 30, + height: 24, items: null, itemsCreator: BI.emptyFn, cache: true diff --git a/dist/fineui_without_jquery_polyfill.js b/dist/fineui_without_jquery_polyfill.js index ca37e6683..23bb54ca6 100644 --- a/dist/fineui_without_jquery_polyfill.js +++ b/dist/fineui_without_jquery_polyfill.js @@ -19853,7 +19853,11 @@ BI.TableAdaptLayout = BI.inherit(BI.Layout, { td = this.getWidgetByName(this._getChildName(i)); td.element.width(width); } - td.element.css({"max-width": o.columnSize[i] + "px"}); + // 对于表现为td的元素设置最大宽度,有几点需要注意 + // 1、由于直接对td设置最大宽度是在规范中未定义的, 所以要使用类似td:firstChild来迂回实现 + // 2、不能给多个td设置最大宽度,这样只会平分宽度 + // 3、多百分比宽度就算了 + td.element.css({"max-width": o.columnSize[i] <= 1 ? width : width + "px"}); if (i === 0) { td.element.addClass("first-element"); } @@ -21953,7 +21957,11 @@ BI.HorizontalLayout = BI.inherit(BI.Layout, { td = this.getWidgetByName(this._getChildName(i)); td.element.attr("width", width); } - td.element.css({"max-width": o.columnSize[i] + "px"}); + // 对于表现为td的元素设置最大宽度,有几点需要注意 + // 1、由于直接对td设置最大宽度是在规范中未定义的, 所以要使用类似td:firstChild来迂回实现 + // 2、不能给多个td设置最大宽度,这样只会平分宽度 + // 3、多百分比宽度就算了 + td.element.css({"max-width": o.columnSize[i] <= 1 ? width : width + "px"}); if (i === 0) { td.element.addClass("first-element"); } @@ -65773,7 +65781,7 @@ BI.AllValueChooserCombo = BI.inherit(BI.AbstractAllValueChooser, { return BI.extend(BI.AllValueChooserCombo.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-all-value-chooser-combo", width: 200, - height: 30, + height: 24, items: null, itemsCreator: BI.emptyFn, cache: true @@ -65895,7 +65903,7 @@ BI.shortcut("bi.all_value_chooser_pane", BI.AllValueChooserPane);BI.AllValueMult props: { baseCls: "bi-all-value-multi-text-value-combo", width: 200, - height: 30, + height: 24, items: [] }, @@ -66642,7 +66650,7 @@ BI.TreeValueChooserCombo = BI.inherit(BI.AbstractTreeValueChooser, { return BI.extend(BI.TreeValueChooserCombo.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-tree-value-chooser-combo", width: 200, - height: 30, + height: 24, items: null, itemsCreator: BI.emptyFn }); @@ -66834,7 +66842,7 @@ BI.ValueChooserCombo = BI.inherit(BI.AbstractValueChooser, { return BI.extend(BI.ValueChooserCombo.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-value-chooser-combo", width: 200, - height: 30, + height: 24, items: null, itemsCreator: BI.emptyFn, cache: true diff --git a/dist/widget.js b/dist/widget.js index 95a1366cb..0b623837d 100644 --- a/dist/widget.js +++ b/dist/widget.js @@ -22788,7 +22788,7 @@ BI.AllValueChooserCombo = BI.inherit(BI.AbstractAllValueChooser, { return BI.extend(BI.AllValueChooserCombo.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-all-value-chooser-combo", width: 200, - height: 30, + height: 24, items: null, itemsCreator: BI.emptyFn, cache: true @@ -22910,7 +22910,7 @@ BI.shortcut("bi.all_value_chooser_pane", BI.AllValueChooserPane);BI.AllValueMult props: { baseCls: "bi-all-value-multi-text-value-combo", width: 200, - height: 30, + height: 24, items: [] }, @@ -23657,7 +23657,7 @@ BI.TreeValueChooserCombo = BI.inherit(BI.AbstractTreeValueChooser, { return BI.extend(BI.TreeValueChooserCombo.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-tree-value-chooser-combo", width: 200, - height: 30, + height: 24, items: null, itemsCreator: BI.emptyFn }); @@ -23849,7 +23849,7 @@ BI.ValueChooserCombo = BI.inherit(BI.AbstractValueChooser, { return BI.extend(BI.ValueChooserCombo.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-value-chooser-combo", width: 200, - height: 30, + height: 24, items: null, itemsCreator: BI.emptyFn, cache: true diff --git a/src/component/allvaluechooser/combo.allvaluechooser.js b/src/component/allvaluechooser/combo.allvaluechooser.js index d72fedc58..85ca1bc1c 100644 --- a/src/component/allvaluechooser/combo.allvaluechooser.js +++ b/src/component/allvaluechooser/combo.allvaluechooser.js @@ -12,7 +12,7 @@ BI.AllValueChooserCombo = BI.inherit(BI.AbstractAllValueChooser, { return BI.extend(BI.AllValueChooserCombo.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-all-value-chooser-combo", width: 200, - height: 30, + height: 24, items: null, itemsCreator: BI.emptyFn, cache: true diff --git a/src/component/allvaluemultitextvaluecombo/allvalue.multitextvalue.combo.js b/src/component/allvaluemultitextvaluecombo/allvalue.multitextvalue.combo.js index 0af73528b..7dfaa4dea 100644 --- a/src/component/allvaluemultitextvaluecombo/allvalue.multitextvalue.combo.js +++ b/src/component/allvaluemultitextvaluecombo/allvalue.multitextvalue.combo.js @@ -3,7 +3,7 @@ BI.AllValueMultiTextValueCombo = BI.inherit(BI.Widget, { props: { baseCls: "bi-all-value-multi-text-value-combo", width: 200, - height: 30, + height: 24, items: [] }, diff --git a/src/component/treevaluechooser/combo.treevaluechooser.js b/src/component/treevaluechooser/combo.treevaluechooser.js index 88462ac95..394c55255 100644 --- a/src/component/treevaluechooser/combo.treevaluechooser.js +++ b/src/component/treevaluechooser/combo.treevaluechooser.js @@ -11,7 +11,7 @@ BI.TreeValueChooserCombo = BI.inherit(BI.AbstractTreeValueChooser, { return BI.extend(BI.TreeValueChooserCombo.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-tree-value-chooser-combo", width: 200, - height: 30, + height: 24, items: null, itemsCreator: BI.emptyFn }); diff --git a/src/component/valuechooser/combo.valuechooser.js b/src/component/valuechooser/combo.valuechooser.js index 69ab02b84..7f898dc6a 100644 --- a/src/component/valuechooser/combo.valuechooser.js +++ b/src/component/valuechooser/combo.valuechooser.js @@ -12,7 +12,7 @@ BI.ValueChooserCombo = BI.inherit(BI.AbstractValueChooser, { return BI.extend(BI.ValueChooserCombo.superclass._defaultConfig.apply(this, arguments), { baseCls: "bi-value-chooser-combo", width: 200, - height: 30, + height: 24, items: null, itemsCreator: BI.emptyFn, cache: true