Upgrade to ExtJS 4.0.0 - Released 04/26/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     alias: 'widget.header',
7     extend: 'Ext.Component',
8     
9     initComponent: function() {
10         Ext.applyIf(this, {
11             dock: 'top',
12             html: 'Loading Nested Data Example',
13             cls: 'app-header',
14             border: false
15         });
16                 
17         this.callParent(arguments);
18     }
19 });