]> git.proxmox.com Git - extjs.git/blob - extjs/build/examples/classic/app/nested-loading/app/view/Header.js
add extjs 6.0.1 sources
[extjs.git] / extjs / build / examples / classic / 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 });