Advertisement
Guest User

Untitled

a guest
Dec 18th, 2014
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. Ext.define('TestPanel', {
  2. extend: 'Ext.panel.Panel',
  3. alias: 'widget.testPanel',
  4. id: 'testerPanel',
  5. title: 'oldTilte',
  6. //other code
  7. });
  8.  
  9. var grid = Ext.getCmp('testerPanel');
  10. grid.setTitle('newTitle'); //doesn't update the title
  11.  
  12. //tried with including ref or view in the controller
  13. this.getTestPanel().setTitle('newTitle'); //this didn't update it either
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement