Sencha grid 데이터 합치

2024. 12. 18. 22:14Javascript/Sencha

// Get new and updated records
const newRows = store.getNewRecords();
const updatedRows = store.getUpdatedRecords();

// Combine newRows and updatedRows into a single array
const combinedRows = Ext.Array.merge(newRows, updatedRows);