Extjs - Force TextField value to uppercase

var txtBox = new Ext.form.TextField({
            enableKeyEvents: true,
            fieldLabel : 'Account No.',
            width :'190',
            emptyText:'Enter valid Account Number',
            id: "searchAcctNum",
            style : {textTransform: "uppercase"},
            listeners:{
                change: function(field, newValue, oldValue){
                               field.setValue(newValue.toUpperCase());
                          }
             }
        });

0 comments: