A szövegmező readOnly tulajdonsága is egy olyan tulajdonság, amit alapértelmezetten nem lehet módosítani. Pedig szerintem volna rá szükség.
Ext.override(Ext.form.Field, {
setReadOnly: function (value) {
if (this.rendered && this.readOnly != value) {
var el = this.getEl();
el.dom.setAttribute('readOnly', value);
el.dom.readOnly = value;
}
this.readOnly = value;
return this;
}
});
setReadOnly: function (value) {
if (this.rendered && this.readOnly != value) {
var el = this.getEl();
el.dom.setAttribute('readOnly', value);
el.dom.readOnly = value;
}
this.readOnly = value;
return this;
}
});