答案 0 :(得分:1)
是的,这是sencha中的错误。
要使其正常工作,您可以像这样覆盖colorfield
:
Ext.define("SomeColorField", {
override: "Ext.ux.colorpick.Field",
onColorPickerOK: function (colorPicker) {
var oldValue = this.getValue();
this.setColor(colorPicker.getColor());
this.updateValue(colorPicker.getColor());
this.collapse();
this.fireEvent('change', this, this.getValue(), oldValue);
}
});