Sencha treepanel에서 체크된 row만 가져오기
2024. 12. 21. 23:01ㆍJavascript/Sencha
test 컬럼이 체크된 row만 가져오기
var treePanel = this.up('treepanel'); // Get the tree panel
var checkedRows = [];
treePanel.getStore().each(function (record) {
if (record.get('test')) { // Check if the 'test' column is checked
checkedRows.push(record); // Add the record to the array
}
});
// Now 'checkedRows' contains all the checked rows.
console.log(checkedRows);
'Javascript > Sencha' 카테고리의 다른 글
Sencha combobox 로딩시, 서버에서 값 가져오기 (0) | 2024.12.24 |
---|---|
Sencha 특정 컬럼만 수정(modified)표시 제거하기 (0) | 2024.12.22 |
Sencha treepanel view에서 모든 row 정보 가져오기 (1) | 2024.12.21 |
Sencha treepanel의 모든 row 가져오기 (0) | 2024.12.21 |
Sencha treepanel 체크박스 체크하면 css 적용하기 (0) | 2024.12.21 |