Sencha grid editing 가능하도록 처리

2025. 1. 4. 15:15Javascript/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'
}