Browse Source

Merge pull request #202 in ~GUY/fineui from ~WINDY/fineui:master to master

* commit '571feec1933b574fe2834a49e1f8cb426eb593c6':
  numbereditor加allowBlank
es6
windy 7 years ago
parent
commit
8c0631dc90
  1. 2
      bi/widget.js
  2. 2
      dist/bundle.js
  3. 8
      dist/bundle.min.js
  4. 2
      dist/widget.js
  5. 2
      src/widget/numbereditor/number.editor.js

2
bi/widget.js

@ -12036,6 +12036,7 @@ BI.NumberEditor = BI.inherit(BI.Widget, {
return v;
},
value: 0,
allowBlank: false,
errorText: "",
step: 1
})
@ -12047,6 +12048,7 @@ BI.NumberEditor = BI.inherit(BI.Widget, {
this.editor = BI.createWidget({
type: "bi.sign_editor",
height: o.height,
allowBlank: o.allowBlank,
value: o.valueFormatter(o.value),
validationChecker: o.validationChecker,
errorText: o.errorText

2
dist/bundle.js vendored

@ -87132,6 +87132,7 @@ BI.NumberEditor = BI.inherit(BI.Widget, {
return v;
},
value: 0,
allowBlank: false,
errorText: "",
step: 1
})
@ -87143,6 +87144,7 @@ BI.NumberEditor = BI.inherit(BI.Widget, {
this.editor = BI.createWidget({
type: "bi.sign_editor",
height: o.height,
allowBlank: o.allowBlank,
value: o.valueFormatter(o.value),
validationChecker: o.validationChecker,
errorText: o.errorText

8
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/widget.js vendored

@ -12036,6 +12036,7 @@ BI.NumberEditor = BI.inherit(BI.Widget, {
return v;
},
value: 0,
allowBlank: false,
errorText: "",
step: 1
})
@ -12047,6 +12048,7 @@ BI.NumberEditor = BI.inherit(BI.Widget, {
this.editor = BI.createWidget({
type: "bi.sign_editor",
height: o.height,
allowBlank: o.allowBlank,
value: o.valueFormatter(o.value),
validationChecker: o.validationChecker,
errorText: o.errorText

2
src/widget/numbereditor/number.editor.js

@ -13,6 +13,7 @@ BI.NumberEditor = BI.inherit(BI.Widget, {
return v;
},
value: 0,
allowBlank: false,
errorText: "",
step: 1
})
@ -24,6 +25,7 @@ BI.NumberEditor = BI.inherit(BI.Widget, {
this.editor = BI.createWidget({
type: "bi.sign_editor",
height: o.height,
allowBlank: o.allowBlank,
value: o.valueFormatter(o.value),
validationChecker: o.validationChecker,
errorText: o.errorText

Loading…
Cancel
Save