Guest User

Untitled

a guest
Jul 17th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. x = new Ext.Button({
  2. id: 'btn',
  3. text: 'xxx',
  4. renderTo: 'x',
  5. listeners: {
  6. click: function() {
  7. alert('clicked');
  8. }
  9. }
  10. });
  11.  
  12.  
  13. x = Ext.getCmp('btn');
  14. x.fireEvent('click', x);
Add Comment
Please, Sign In to add comment