this.grid is undefined
1646 단어 undefined
다음은 오류 코드입니다.
new Ext.grid.GridPanel({
region:'west',
split:true,//
title:' ',
collapsible:true,//
collapsedTitle: true,
width:150,
minSize:50,// 50
maxSize:170,// 170
store:this.medicationUnitFormStore,
columns:[
this.checkBox,
{header: 'xx ',align: 'left', width: 115, sortable: true, dataIndex: 'orgName',colspan:1}
]
});
이렇게 하면 인터페이스가 표시되지만 체크박스를 누르면this가 표시됩니다.grid is undefined 이 오류는 사실selModel : Object
Any subclass of
Ext.grid.AbstractSelectionModel that will providethe selection model for the grid (defaults to
Ext.grid.RowSelectionModel if not specified).
여기 this.checkbox는 바로 Checkbox Selection Model입니다. 쓴 구성 요소이기 때문에 이곳에서 간단하게 고쳤습니다. 주의해야 할 것은columns에 checkbox를 쓴 후에 반드시 기억해야 한다는 것입니다.
GridPanel
의 속성에도 이 속성을 더해야 한다selModel :this.체크박스, 이렇게 하면 OK.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Valores null e 정의되지 않음 자바스크립트 없음O código acima irá retornar 또는 erro Uncaught ReferenceError: gum is not defined (gum não foi definida) pois estamos tent...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.