Browse Source

BI-92646 fix:选色控件色值小写

es6
Tangjinxia 3 years ago
parent
commit
bd9fe54706
  1. 4
      src/case/colorchooser/colorchooser.js

4
src/case/colorchooser/colorchooser.js

@ -19,7 +19,7 @@ BI.ColorChooser = BI.inherit(BI.Widget, {
_init: function () {
var self = this, o = this.options;
BI.ColorChooser.superclass._init.apply(this, arguments);
o.value = o.value || "";
o.value = (o.value || "").toLowerCase();
this.combo = BI.createWidget({
type: "bi.combo",
element: this,
@ -91,7 +91,7 @@ BI.ColorChooser = BI.inherit(BI.Widget, {
},
setValue: function (color) {
this.combo.setValue(color || "");
this.combo.setValue((color || "").toLowerCase());
},
getValue: function () {

Loading…
Cancel
Save