I have spent a fair amount of time trying to get paging to work on the client side. I don't know how I am supposed to use Ext.data.PagingMemoryProxy or Ext.ux.data.PagingMemoryProxy with what I already have. Any tips?
Code:
// create the Data Store
var ds = new Ext.data.Store({
proxy: new Ext.data.PagingMemoryProxy(monthArray),
reader: new Ext.data.ArrayReader({}, [
{name: 'month'}
])
How does that coincide with what I already have?
Code:
MyDataStore = new Ext.data.Store({
id: 'MyDataStore',
proxy: new Ext.data.HttpProxy({
url: 'json.asp?date2=07%2F21%2F2008', // File to connect to
timeout: 90000
}),