Ext 小错误整合

1. Ext.this.addEvents is not a function
由于创建对象的时候忘记写new造成的,稍微检查下就会发现这个错误

2. 缺少标识符,字符串或数字
在new出来的对象后面最后一个属性也添加 , 号了
eg:
var groupGrid = new Ext.grid.GridPanel({  
    height: 200,
    anchor : '99%',
    store: configGroup,  
    title: '自定义单元格的显示格式',  
    frame: true,
});

改为
var groupGrid = new Ext.grid.GridPanel({  
    height: 200,
    anchor : '99%',
    store: configGroup,  
    title: '自定义单元格的显示格式',  
    frame: true   // 删除, 号
});

基本就OK了,改错误只在IE下会有,ff 和google不会报错

3. 缺少]
在定义new Ext.data.Record.create 的时候可能少了一个,
eg:
var configProjectRecord = new Ext.data.Record.create(
  [   
      	{name: 'id',             type: 'string',  mapping:'projectId'},  
        {name: 'name',           type: 'string',  mapping:'projectName'},  
        {name: 'type',           type: 'string',  mapping:'type'}
        {name: 'processVersion', type: 'string',  mapping:'processVersion'} ,
        {name: 'projectVersion', type: 'string',  mapping:'projectVersion'} 
 ]);

中 少了 ,
 {name: 'type',       type: 'string',  mapping:'type'}

你可能感兴趣的:(ext)