日期:2014-05-16  浏览次数:20407 次

Extjs4 MVC 添加view层

实例中我们通过view层望主界面中添加一个grid,

1、app.js改成如下:

app.js
复制代码
 1 Ext.Loader.setConfig({enabled:true});//开启动态加载
 2 Ext.application({
 3     name: 'MVC',
 4 
 5     appFolder: 'mvc',
 6     
 7     controllers: ['MVCS'],
 8 
 9     launch: function() {
10         Ext.create('Ext.container.Viewport', {
11             layout: 'fit',
12             items: {
13                 xtype: 'userlist'
14             }
15         });
16     }
17 });
复制代码

2.MVC/view/mvc/MVCS.js改成如下所示: