Sencha grid editing 가능하도록 처리
2025. 1. 4. 15:15ㆍJavascript/Sencha
Row editing
selType: 'rowmodel', // Enables row selection for editing
plugins: {
ptype: 'rowediting', // Enables row editing plugin
clicksToEdit: 2 // Double-click to edit
},
Cell editing
selType: 'cellmodel', // Enables cell selection for editing
plugins: {
ptype: 'cellediting',
clicksToEdit: 1 // Single-click to edit
},
selType: 'cellmodel' 과 selModel: { type: 'checkboxmodel' }은 같이 사용할 수 없음
selType: 'cellmodel', // Enables cell selection for editing
plugins: {
ptype: 'cellediting',
clicksToEdit: 1 // Single-click to edit
},
selModel: {
type: 'checkboxmodel',
mode: 'MULTI'
}
'Javascript > Sencha' 카테고리의 다른 글
Sencha grid 기본 체크박스 정보 가져오기 (0) | 2025.01.06 |
---|---|
Sencha 이미지 사이즈 변경 후 업로드하기 (0) | 2025.01.06 |
Sencha grid 특정 컬럼만 commit해야 하는 경우 (0) | 2024.12.28 |
Sencha grid 데이터 초기화 하기 (0) | 2024.12.27 |
Sencha grid에 선택된 rows를 서버에 전송하기 (0) | 2024.12.27 |