I am using the jqGrid with loadonece: true. I am using client side sorting and filtering. I got the script unresponsive error when I tried to search in a grid with 8000 records. So I was wondering if there in any limitation on data. Though in jqGrid documentation I did not find any limitation on data size with loadonce:true.
I am using the jqGrid with loadonece: true . I am using client side
Share
The restriction is very depend on
rowNumvalue) it’s very important to usegridview: trueoption (see the answer for more information). You should reduce the usage of methods likesetCellorsetRowDataespecially in the loop (for example the loop over all rows inside ofloadCompleteorgridComplete). Instead of that one should usecellattr,rowattrand custom formatters.In general I would not use local grid with 8000 rows. The performance of local grid with more as about 1000 rows is slow enough. I would recommend you to use server side paging, sorting and filtering. SQL Server which implement all the feature in native code and which can use indexes from the database can implement all much more effectively as JavaScript can do.