How can I make both plug-ins to work together?
Now RowNumberer counts the rows for each page.
For example if the grid has 3 pages each of them with 22 records RowNumberer column shows only the numbers from 1 to 22 on each page... doesn't count entire grid 1 to 66 (the second page starts again from 1 to 22 like the third one).
Hi,
It seemsPagingStore doesn't run with extjs v4.
I've got an error like:
members is undefined
members.extend = superclass; ext-all-debug.js (ligne 3375)
Have you try to run this extension with ExtJS v4 ?
I am using PagingStore for local pagination as my applicatoin need to have all the data from the first call,
as Search functionality is of more importance. I am using it as rendering all the data on switching the tab is costly.
It works fine but the moment I click next to show say next 50 records search breaks. Otherwise search is working properly from the first page. I need to have a exhaustive search for the all the data in store from every page. I am using store.filter('name', 'entered_key', true) on each key press. Please suggest any solutions.
Code:
var proxy = new Ext.data.HttpProxy({
url : 'list.json',
restful: false
});