I’m trying to find a jquery datagrid which has the following:
- Allows to use the scroll bar to fetch the next page of data.
- Is able to handle high volume of data.
- Works with .NET (2.0) services
Thank you
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I don’t recommend to load a lot of rows on the same page. It will slow down the page.
I don’t recommend you to use the scrollbar to load new rows. There will always be a delay and
several ajax requests will be invoked if the user continues to scroll the bar (and by doing so put load on your server/db).
I’ve created a grid which can use a “show more” button to load more rows in the table or use a traditional page pager.
It’s easy to create custom filtering to let the user to quickly find the wanted rows (It’s much better from a users perspective to search/filter than load a large number of rows).
https://github.com/jgauffin/griffin.table