Guest User

Untitled

a guest
Jan 21st, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. Ext.ComponentMgr.onAvailable('footer_bar', function(config) {
  2. var footer_bar = Ext.getCmp('footer_bar');
  3. footer_bar.add({
  4. xtype: 'button',
  5. text: 'My Commands',
  6. handler: function(button) {
  7. alert('got here');
  8. }
  9. });
  10.  
  11.  
  12. footer_bar.add('-');
  13. }) ;
Add Comment
Please, Sign In to add comment