Browse Source

BI-25579

es6
windy 6 years ago
parent
commit
1b6e17ce72
  1. 2
      src/case/combo/iconcombo/combo.icon.js
  2. 4
      src/case/combo/iconcombo/trigger.iconcombo.js
  3. 5
      src/widget/downlist/popup.downlist.js
  4. 4
      src/widget/numberinterval/numberinterval.js

2
src/case/combo/iconcombo/combo.icon.js

@ -8,7 +8,7 @@ BI.IconCombo = BI.inherit(BI.Widget, {
_defaultConfig: function () {
return BI.extend(BI.IconCombo.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-icon-combo",
width: 28,
width: 24,
height: 24,
el: {},
popup: {},

4
src/case/combo/iconcombo/trigger.iconcombo.js

@ -11,7 +11,7 @@ BI.IconComboTrigger = BI.inherit(BI.Trigger, {
el: {},
items: [],
iconCls: "",
width: 28,
width: 24,
height: 24,
isShowDown: true,
value: ""
@ -30,7 +30,7 @@ BI.IconComboTrigger = BI.inherit(BI.Trigger, {
cls: "icon-combo-trigger-icon",
iconCls: iconCls,
disableSelected: true,
width: o.isShowDown ? o.width - 12 : o.width,
width: o.isShowDown ? o.width - 2 : o.width,
height: o.height,
iconWidth: o.iconWidth,
iconHeight: o.iconHeight,

5
src/widget/downlist/popup.downlist.js

@ -70,7 +70,8 @@ BI.DownListPopup = BI.inherit(BI.Pane, {
BI.createWidget({
type: "bi.vertical",
element: this,
items: [this.popup]
items: [this.popup],
vgap: 5
});
},
@ -97,7 +98,6 @@ BI.DownListPopup = BI.inherit(BI.Pane, {
item.el.height = self.constants.height;
item.el.iconCls2 = self.constants.nextIcon;
item.popup = {
lgap: 4,
el: {
type: "bi.button_tree",
chooseType: 0,
@ -106,6 +106,7 @@ BI.DownListPopup = BI.inherit(BI.Pane, {
}]
},
vgap: 5,
maxHeight: 378
};
item.el.childValues = [];

4
src/widget/numberinterval/numberinterval.js

@ -11,7 +11,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
signalError: "signalBubble",
editorWidth: 114,
columns: 5,
width: 30,
width: 24,
rows: 1,
numberErrorCls: "number-error",
border: 1,
@ -23,7 +23,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
var conf = BI.NumberInterval.superclass._defaultConfig.apply(this, arguments);
return BI.extend(conf, {
extraCls: "bi-number-interval",
height: 25,
height: 24,
validation: "valid",
closeMin: true
});

Loading…
Cancel
Save