|
|
@ -181,7 +181,7 @@ BI.SimpleHexColorPickerEditor = BI.inherit(BI.Widget, { |
|
|
|
this.R.setValue(BI.isNull(json.r) ? "" : json.r); |
|
|
|
this.R.setValue(BI.isNull(json.r) ? "" : json.r); |
|
|
|
this.G.setValue(BI.isNull(json.g) ? "" : json.g); |
|
|
|
this.G.setValue(BI.isNull(json.g) ? "" : json.g); |
|
|
|
this.B.setValue(BI.isNull(json.b) ? "" : json.b); |
|
|
|
this.B.setValue(BI.isNull(json.b) ? "" : json.b); |
|
|
|
this.hexEditor.setValue(color.slice(this.constants.HEX_PREFIX_POSITION)); |
|
|
|
this.hexEditor.setValue(BI.isEmptyObject(json) ? "" : color.slice(this.constants.HEX_PREFIX_POSITION)); |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
getValue: function () { |
|
|
|
getValue: function () { |
|
|
|