/ext-4.1.0_b3/docs/guides/editable_grid/GeekFlicks/app.js
https://bitbucket.org/srogerf/javascript · JavaScript · 17 lines · 17 code · 0 blank · 0 comment · 0 complexity · 2c13b1b01f86fc532e925e10d1690742 MD5 · raw file
- Ext.application({
- name: "GeekFlicks",
- appFolder: "app",
- controllers: ['Movies'],
- launch: function () {
- Ext.create('Ext.container.Viewport', {
- layout: 'fit',
- items: [{
- xtype: 'panel',
- title: 'Top Geek Flicks of All Time',
- items: [{
- xtype: 'movieseditor'
- }]
- }]
- });
- }
- });