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