Sencha grid 데이터 가져오기
2024. 12. 18. 22:12ㆍJavascript/Sencha
신규 rows
const grid = btn.up('grid');
const = grid.getStore();
const newRecords = store.getNewRecords();
수정된 rows
const grid = btn.up('grid');
const store = grid.getStore();
const updatedRecords = store.getUpdatedRecords();
신규 + 수정 rows
const grid = btn.up('grid');
const store = grid.getStore();
const modifiedRecords = store.getModifiedRecords();
선택된 rows
const grid = btn.up('grid');
const store = grid.getStore();
const selection = grid.getSelectionModel().getSelection();
'Javascript > Sencha' 카테고리의 다른 글
Sencha grid 선택된 데이터 삭제 처리 (0) | 2024.12.18 |
---|---|
Sencha grid 데이터 합치 (0) | 2024.12.18 |
Sencha grid 신규 컬럼 여부 체크 (0) | 2024.12.18 |
Sencha Grid cell 편집 동적 처리 (1) | 2024.12.18 |
Sencha Uncaught TypeError: c is not a constructor (0) | 2024.12.16 |