X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/0494b8d9b9bb03ab6c22b34dae81261e3cd7e3e6..7a654f8d43fdb43d78b63d90528bed6e86b608cc:/examples/app/nested-loading/app/view/Header.js diff --git a/examples/app/nested-loading/app/view/Header.js b/examples/app/nested-loading/app/view/Header.js new file mode 100644 index 00000000..64f69a7f --- /dev/null +++ b/examples/app/nested-loading/app/view/Header.js @@ -0,0 +1,19 @@ +/** + * The application header displayed at the top of the viewport + * @extends Ext.Component + */ +Ext.define('Books.view.Header', { + alias: 'widget.header', + extend: 'Ext.Component', + + initComponent: function() { + Ext.applyIf(this, { + dock: 'top', + html: 'Loading Nested Data Example', + cls: 'app-header', + border: false + }); + + this.callParent(arguments); + } +}); \ No newline at end of file