Browse Source

Merge pull request #899 in VISUAL/fineui from ~WINDY/fineui:master to master

* commit '6c8a483da53480859662d0b1eed89bd49a47b103':
  无JIRA任务 默认高度
es6
windy 5 years ago
parent
commit
d3f8eba6e6
  1. 20
      dist/2.0/fineui.ie.js
  2. 20
      dist/2.0/fineui.js
  3. 20
      dist/bundle.ie.js
  4. 20
      dist/bundle.js
  5. 12
      dist/core.js
  6. 20
      dist/fineui.ie.js
  7. 20
      dist/fineui.js
  8. 20
      dist/fineui_without_jquery_polyfill.js
  9. 8
      dist/widget.js
  10. 2
      src/component/allvaluechooser/combo.allvaluechooser.js
  11. 2
      src/component/allvaluemultitextvaluecombo/allvalue.multitextvalue.combo.js
  12. 2
      src/component/treevaluechooser/combo.treevaluechooser.js
  13. 2
      src/component/valuechooser/combo.valuechooser.js

20
dist/2.0/fineui.ie.js vendored

@ -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

20
dist/2.0/fineui.js vendored

@ -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

20
dist/bundle.ie.js vendored

@ -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

20
dist/bundle.js vendored

@ -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

12
dist/core.js vendored

@ -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");
}

20
dist/fineui.ie.js vendored

@ -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

20
dist/fineui.js vendored

@ -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

20
dist/fineui_without_jquery_polyfill.js vendored

@ -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

8
dist/widget.js vendored

@ -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

2
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

2
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: []
},

2
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
});

2
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

Loading…
Cancel
Save