Sencha treepanel 체크박스 체크하면 css 적용하기
2024. 12. 21. 22:32ㆍJavascript/Sencha
Ext.fly().toggle.Cls 사용
{
xtype: 'checkcolumn', dataIndex: 'check', width: 50,
listeners: {
checkchange: function (column, rowIndex, checked, record) {
record.commit(); // Commit changes to reflect visually
// Apply a CSS class to visually indicate deletion
const view = column.up('treepanel').getView();
const rowNode = view.getNode(record); // Get the DOM node for the row
console.log(rowNode);
if (rowNode) {
console.log('222222222222222222222222222');
Ext.fly(rowNode).toggleCls('marked-for-deletion', checked);
}
}
}
},
'Javascript > Sencha' 카테고리의 다른 글
Sencha treepanel view에서 모든 row 정보 가져오기 (1) | 2024.12.21 |
---|---|
Sencha treepanel의 모든 row 가져오기 (0) | 2024.12.21 |
Sencha column의 값에 따라 삭제 표시 처리 (1) | 2024.12.21 |
Sencha button 이벤트 추가하기 (0) | 2024.12.19 |
Sencha container 오른쪽 정렬하기 (0) | 2024.12.19 |