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 (ie. pages); it should appear that all of the data are 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?
Update
All of the solutions (including SlickGrid, Ext Livegrid, and jqgrid) have upper limits at about 250,000 rows in Firefox 3.6, about 2,000,000 rows in Chrome 4.1 and about 50,000 rows in IE8.
For example, SlickGrid limits number the displayed results to 131,000 in example 6. Going to 132,000 and higher causes the FireFox 3.6 rendering engine to break.
As you may be thinking, this is really a problem with the browsers (shocking). However, I believe it must be possible for this kind of JavaScript data grid to exist. Therefore, I've started writing my own read-only data grid that incorporates my ideas on how to handle an infinite number of rows.
If you believe you know a JavaScript data grid solution that can handle an infinite number of rows (in practice, millions) in any one of these browsers, please let me know!
Thanks for all the help. I'll decide what to do with the bounty later.
Update 2
With a few modifications (see the answer for my comments), SlickGrid is able to handle millions of rows. Some time in the future, I may write my own "infinite grid", but this does the job for now.
Thanks everyone!
Update 3
See Tin's answer for the final final solution.

@Greg:I know these things can be very browser-specific (YBMV), but in my case, the 500,000+ row demos are either 1) failing to show the scroll-bar or 2) showing up to some number of rows (ie 51,900)... You can check out a demo (trirand.com/blog/phpjqgrid/examples/paging/scrollbar/…), and there's lots written about the feature in the forums (google.com/…) To me, True Scrolling Rows looks like a new feature that has some bugs that need to be worked out. – Rudiger Mar 14 '10 at 5:07@drozzy:I haven't "rejected" anything. All the solutions, including "write your own" solutions, will be AJAX. The question is: which data grids exist that support seamless scrolling for millions of rows. – Rudiger Mar 16 '10 at 17:20