]>
Commit | Line | Data |
---|---|---|
1 | /**\r | |
2 | * The application header displayed at the top of the viewport\r | |
3 | * @extends Ext.Component\r | |
4 | */\r | |
5 | Ext.define('Books.view.Header', {\r | |
6 | extend: 'Ext.Component',\r | |
7 | \r | |
8 | dock: 'top',\r | |
9 | baseCls: 'app-header',\r | |
10 | \r | |
11 | initComponent: function() {\r | |
12 | Ext.applyIf(this, {\r | |
13 | html: 'Loading Nested Data Example'\r | |
14 | });\r | |
15 | \r | |
16 | this.callParent(arguments);\r | |
17 | }\r | |
18 | }); |