Whenever a store (Ext.data.Store
) reads data from the server, it sends paging parameters like &page=1&start=0&limit=25
in a json
proxy or [page:1, start:0, limit:25]
using a direct
proxy.
I'd like to disable paging in the store or proxy configuration.
I found this workaround, but I'm sure there must be a better method.
proxy: {
pageParam: undefined,
startParam: undefined,
limitParam: undefined,
...
}
Does anyone know how to disable paging properly ?