Sencha Grid store에 변경사항 확인 및 저장하기
Ext.onReady(function () { // Sample data const initialData = [ { id: 1, name: 'John Doe', email: 'john.doe@example.com', age: 30 }, { id: 2, name: 'Jane Smith', email: 'jane.smith@example.com', age: 25 }, { id: 3, name: 'Mike Johnson', email: 'mike.johnson@example.com', age: 35 } ]; // Define the data store const store = Ext.create('Ext.data.Store', { f..
2024.12.01