windy 7 years ago
parent
commit
e6512d1459
  1. 3
      bi/widget.js
  2. 3
      dist/bundle.js
  3. 6
      dist/bundle.min.js
  4. 3
      dist/widget.js
  5. 2
      src/widget/editor/editor.text.js
  6. 1
      src/widget/multidate/multidate.segment.js

3
bi/widget.js

@ -4275,6 +4275,8 @@ BI.TextEditor = BI.inherit(BI.Widget, {
tgap: o.tgap,
bgap: o.bgap,
value: o.value,
title: o.title,
tipType: o.tipType,
validationChecker: o.validationChecker,
quitChecker: o.quitChecker,
allowBlank: o.allowBlank,
@ -6870,6 +6872,7 @@ BI.MultiDateSegment = BI.inherit(BI.Single, {
title: function () {
return self.textEditor.getValue();
},
tipType: "success",
cls: 'bi-multidate-editor',
width: this.constants.textWidth,
height: this.constants.itemHeight

3
dist/bundle.js vendored

@ -82604,6 +82604,8 @@ BI.TextEditor = BI.inherit(BI.Widget, {
tgap: o.tgap,
bgap: o.bgap,
value: o.value,
title: o.title,
tipType: o.tipType,
validationChecker: o.validationChecker,
quitChecker: o.quitChecker,
allowBlank: o.allowBlank,
@ -85199,6 +85201,7 @@ BI.MultiDateSegment = BI.inherit(BI.Single, {
title: function () {
return self.textEditor.getValue();
},
tipType: "success",
cls: 'bi-multidate-editor',
width: this.constants.textWidth,
height: this.constants.itemHeight

6
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

3
dist/widget.js vendored

@ -4275,6 +4275,8 @@ BI.TextEditor = BI.inherit(BI.Widget, {
tgap: o.tgap,
bgap: o.bgap,
value: o.value,
title: o.title,
tipType: o.tipType,
validationChecker: o.validationChecker,
quitChecker: o.quitChecker,
allowBlank: o.allowBlank,
@ -6870,6 +6872,7 @@ BI.MultiDateSegment = BI.inherit(BI.Single, {
title: function () {
return self.textEditor.getValue();
},
tipType: "success",
cls: 'bi-multidate-editor',
width: this.constants.textWidth,
height: this.constants.itemHeight

2
src/widget/editor/editor.text.js

@ -42,6 +42,8 @@ BI.TextEditor = BI.inherit(BI.Widget, {
tgap: o.tgap,
bgap: o.bgap,
value: o.value,
title: o.title,
tipType: o.tipType,
validationChecker: o.validationChecker,
quitChecker: o.quitChecker,
allowBlank: o.allowBlank,

1
src/widget/multidate/multidate.segment.js

@ -41,6 +41,7 @@ BI.MultiDateSegment = BI.inherit(BI.Single, {
title: function () {
return self.textEditor.getValue();
},
tipType: "success",
cls: 'bi-multidate-editor',
width: this.constants.textWidth,
height: this.constants.itemHeight

Loading…
Cancel
Save