열의 동작을 확인란만으로 제한하고 셀 영역을 제한하는 방법이 있습니까? 문서에서 복사 한 체크 열의 샘플 코드.Ext.grid.column.Click 이벤트를 전체 셀 영역이 아닌 CheckBox 자체에 적용하십시오.
var store = Ext.create('Ext.data.Store', {
fields: ['name', 'email', 'phone', 'active'],
data: [{
name: 'Lisa',
email: '[email protected]',
phone: '555-111-1224',
active: true
}, {
name: 'Bart',
email: '[email protected]',
phone: '555-222-1234',
active: true
}, {
name: 'Homer',
email: '[email protected]',
phone: '555-222-1244',
active: false
}, {
name: 'Marge',
email: '[email protected]',
phone: '555-222-1254',
active: true
}]
});
Ext.create('Ext.grid.Panel', {
title: 'Simpsons',
height: 200,
width: 400,
renderTo: Ext.getBody(),
store: store,
columns: [{
text: 'Name',
dataIndex: 'name'
}, {
text: 'Email',
dataIndex: 'email',
flex: 1
}, {
text: 'Phone',
dataIndex: 'phone'
}, {
xtype: 'checkcolumn',
text: 'Active',
dataIndex: 'active'
}]
});
친절하게 도와주세요.
행을 선택하지 않고 확인란을 선택 하시겠습니까? –
자신 만의 수업을 작성할 수 있습니다. 소스 코드를 살펴 보았습니까? – Alexander
어떤 ExtJS 버전을 사용하고 있습니까? 나는 정식 버전 (예 : 4.1.1)을 의미합니다 –