We need to force TextField convert any input to uppercase in Extjs. You can enable key events and listen for those:
new Ext.form.TextField({
enableKeyEvents: true,
style : {textTransform: "uppercase"},
listeners:{
change: function(field, newValue, oldValue){
field.setValue(newValue.toUpperCase());
}
}
});
On processing, please waiting for ...
Comments are closed for this post, but if you have spotted an error or have additional info that you think should be in this post, feel free to contact me.