A{
xtype:'tbbutton',
text:'Button',
handler:function(){
Ext.Msg.alert('Boo','Here I am');
}
}
B{
xtype:'tbbutton',
text:'Button',
listener:function(){
Ext.Msg.alert('Boo','Here I am');
}
}
C{
xtype:'tbbutton',
text:'Button',
eventr:function(){
Ext.Msg.alert('Boo','Here I am');
}
}
D{
xtype:'tbbutton',
text:'Button',
click:function(){
Ext.Msg.alert('Boo','Here I am');
}
}