I have a grid with 10,000 of records, display 50 records per page using paging method. Whenever I enter something into the header filter, I get this error
My question :
-
Why this error happen?
-
Is there any alternative to solve this issue?
-
What would be the best method/solutions to handle 10,000 records with paging AND header filter?
-
I try using onFilterStart, but it only allows me to filter records on one column header at one time, whereas if I’m NOT using onFilterStart I can filter records many column header at one time.
Is there any workaround to this problem?
mygrid.attachEvent(“onFilterStart”, function(indexes,values){
//load xml
});