windy 7 years ago
parent
commit
58839a6105
  1. 4
      src/base/single/editor/editor.code.js
  2. 2
      src/widget/date/combo.date.js
  3. 2
      src/widget/date/trigger.date.js

4
src/base/single/editor/editor.code.js

@ -138,6 +138,10 @@ BI.CodeEditor = BI.inherit(BI.Single, {
})
},
focus: function () {
this.editor.focus();
},
setStyle: function (style) {
this.style = style;
this.element.css(style);

2
src/widget/date/combo.date.js

@ -8,7 +8,7 @@
BI.DateCombo = BI.inherit(BI.Widget, {
_defaultConfig: function () {
return BI.extend(BI.DateCombo.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-date-combo",
baseCls: "bi-date-combo bi-border",
height: 30
});
},

2
src/widget/date/trigger.date.js

@ -9,7 +9,7 @@ BI.DateTrigger = BI.inherit(BI.Trigger, {
_defaultConfig: function () {
return BI.extend(BI.DateTrigger.superclass._defaultConfig.apply(this, arguments), {
extraCls: "bi-date-trigger bi-border",
extraCls: "bi-date-trigger",
min: '1900-01-01', //最小日期
max: '2099-12-31', //最大日期
height: 25

Loading…
Cancel
Save