Sencha Grid store 업데이트 하기
설정한 값으로 업데이트// New data to update the storelet newData = [ { DATA1: 'A', DATA5: 80, DATA7: 60 }, { DATA1: 'B', DATA5: 70, DATA7: 50 },];// Access the store of the gridlet grid = Ext.ComponentQuery.query('#grid')[0]; // Use itemId to get the gridlet store = grid.getStore(); // Update the store with new datastore.loadData(newData);store를 새로 교체// Create a new storelet newStore = Ext.create('E..
2024.11.27