JavaScript data grid for millions of rows
Posted
by Rudiger
on Stack Overflow
See other posts from Stack Overflow
or by Rudiger
Published on 2010-03-08T16:47:24Z
Indexed on
2010/03/08
16:51 UTC
Read the original article
Hit count: 258
I need to present millions of rows of data to users in a grid using JavaScript.
I don't want the user thinking about viewing finite pieces of data; it should appear that all of the data is available. Rather than downloading all the data at once, small chunks are downloaded as the user comes to them (by scrolling, keying in row numbers, searching).
The rows will not be edited through this front end, so read-only answers are acceptable.
What JavaScript data grids are best for this kind of seamless paging?
© Stack Overflow or respective owner