/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

  1. Ext.application({
  2. name: "GeekFlicks",
  3. appFolder: "app",
  4. controllers: ['Movies'],
  5. launch: function () {
  6. Ext.create('Ext.container.Viewport', {
  7. layout: 'fit',
  8. items: [{
  9. xtype: 'panel',
  10. title: 'Top Geek Flicks of All Time',
  11. items: [{
  12. xtype: 'movieseditor'
  13. }]
  14. }]
  15. });
  16. }
  17. });