alguem sabe chamar um handler de um botão
veja o que estou tentando fazer
new Ext.form.TextField(
{
fieldLabel : "Senha",
name : "txtSenha",
id : "txtSenha",
inputType : "password",
allowBlank : false,
fireKey : function(e){//evento de tecla
if(e.getKey() == e.ENTER) {//precionar enter
Ext.get("bitLogin").setHandler();//como fazer esta linha?
}
}
})