I was looking for jQuery grid recommendations and came across this question / answers: https://stackoverflow.com/questions/159025/jquery-grid-recommendations
Looking through the many jQuery grid solutions, it seems like they all want to have the entire dataset on the client. If I have a large dataset (thousands / millions of records), these types of solutions will obviously not scale well (or work at all)
My question is: is there a jQuery lattice solution that uses Ajax to select only one page at a time? I expect to handle paging, sorting, etc. On the server side with arguments passed from the client via ajax.
Thanks in advance,
- Red
Update: I use FlexiGrid with great success - the rest of the application is ASP.NET MVC2. The only thing you need to do is change the Site.css site that ships with ASP.NET MVC, as it defines the style for all the tables, td, and t-tags (padding) that Flexigrid L & F messed up.
Update 2: on fishysplash there is a good implementation for dynamically generating the necessary javascript code if you plan to have more than one grid with different data tables. http://fishysplash.com/adding-grids-using-flexigrid
jquery css grid asp.net-mvc-2
Ed sinek
source share