1. var w = new Ext.Window({
  2. layout: 'border',
  3. title: 'test',
  4. width: 500,
  5. height: 400,
  6. items: [
  7. { html: '1', title: 'left', width: 200, region: 'west' },
  8. { html: '1', title: 'center', region: 'center' }
  9. ]
  10. });
  11. w.show();
  12. setTimeout(function() {
  13. var p = w.layout.west.panel;
  14. console.log(p);
  15. p.setWidth(400);
  16. w.doLayout();
  17. console.log('test finished');
  18. }, 1000);