Sencha grid 기본 체크박스 정보 가져오기

2025. 1. 6. 23:13Javascript/Sencha

const grid = this.up('grid');
const selection = grid.getSelectionModel().getSelection();
const data = selection.map(record => record.getData());
console.log(data);