Ext 작은 오류 통합

1538 단어 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와 구글은 오류를 보고하지 않습니다.
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'}

좋은 웹페이지 즐겨찾기