Upgrade to ExtJS 4.0.1 - Released 05/18/2011
[extjs.git] / examples / app / nested-loading / app / view / Header.js
1 /**
2  * The application header displayed at the top of the viewport
3  * @extends Ext.Component
4  */
5 Ext.define('Books.view.Header', {
6     extend: 'Ext.Component',
7     
8     dock: 'top',
9     baseCls: 'app-header',
10     
11     initComponent: function() {
12         Ext.applyIf(this, {
13             html: 'Loading Nested Data Example'
14         });
15                 
16         this.callParent(arguments);
17     }
18 });