Simply retrieving all records from a store
extjs, javascript, rows, store
Solution
You can use `store.getRange()` or you can use `store.data.items`. For the `getRange()` call, passing no parameters just defaults to 0 and the last record in the store.
Problem
Instead of retrieving a single row of data from my store, how can I modify the following code to retrieve all records? ``` var store = Ext.data.StoreManager.lookup('MyStore'); store.setProxy({ type: 'pagingmemory', data: store.getAt(0) }); store.load(); ``` Any thoughts?