Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We're rewriting a website used by one of our clients. The user traffic on it is very low, less than 100 unique visitors a week. It's basically just a nice interface to their data in our databases. It allows them to query and filter on different sets of data of theirs.

We're rewriting the site in Python, re-using the same Oracle database that the data is currently on. The current version is written in an old, old version of Coldfusion. One of the things that Coldfusion does well though is displays tons of database records on a single page. It's capable of displaying hundreds of thousands of rows at once without crashing the browser. It uses a Java applet, and it looks like the contents of the rows are perhaps compressed and passed in through the HTML or something. There is a large block of data in the HTML but it's not displayed - it's just rendered by the Java applet.

I've tried several Javascript solutions but they all hinge on the fact that the data will be present in an HTML table or something along those lines. This causes browsers to freeze and run out of memory.

Does anyone know of any solutions to this situation? Our client loves the ability to scroll through all of this data without clicking a "next page" link.

Thank you, Ryan

share|improve this question

6 Answers

up vote 6 down vote accepted

I have done just what you are describing using the following (which works very well):

jQuery Datatables

It enables you to do 'fetch as you scroll' pagination, so you can disable the pagination arrows in favor of a 'forever' scroll.

share|improve this answer
Nice. I will look into this more. Looks like I would require a combination of their "Infinite Scrolling" and server side processing data source. – Ryan Nov 15 '10 at 16:52
I'm going to move forward with datatables for jquery. Although I am not using Django, I did find a nice example of how to write the server-side portion to go along with the infinite scrolling example. I'm using Flask, btw. Thank you, Jakub. example: assembla.com/code/datatables_demo/subversion/nodes/trunk/1_6_2/… – Ryan Nov 15 '10 at 16:59

Give a try with Jquery scroll.

Instead of image scroll , you need to have data scroll.

You should poulate data in the divs , instead of images.

http://www.smoothdivscroll.com/#quickdemo

It should work. I wish.

You gotta great client anyway :-)

Something related to your Q

http://www.9lessons.info/2009/07/load-data-while-scroll-with-jquery-php.html

http://api.jquery.com/scroll/

share|improve this answer

I'm using Open Rico's LiveGrid in a project to display a table with thousands of rows in a page as an endless scrolling table. It has been working really fine so far. The table requests data on demand when you scroll through the rows. The parameters are send as simple GET parameters and the response you have to create on the serverside is simple XML. It should be possible to implement a data backend for a Rico LiveGrid in Python.

share|improve this answer
Odd. The Rico website doesn't seem to be configured properly. It's just initiating a download for every page instead of serving up the contents. I'll continue to try looking into it, though. – Ryan Nov 15 '10 at 16:49
I noticed that too, you can still get it from SourceForge, but the demo page is not working, which would probably the most interesting page for you to see what it can do. – Reboot Nov 15 '10 at 17:48

Most people, in this case, would use a framework. The best documented and most popular framework in Python is Django. It has good database support (including Oracle), and you'll have the easiest time getting help using it since there's such an active Django community.

You can try some other frameworks, but if you're tied to Python I'd recommend Django.

Of course, Jython (if it's an option), would make your job very easy. You could take the existing Java framework you have and just use Jython to build a frontend (and continue to use your Java applet and Java classes and Java server).

The memory problem is an interesting one; I'd be curious to see what you come up with.

share|improve this answer

Have you tried jqGrid? It can be buggy at times, but overall it's one of the better JavaScript grids. It's fairly efficient in dealing with large datasets. It also has a feature whereby the grid retrieves data asynchronously in chunks, but still allows continuous scrolling. It just asks for more data as the user scrolls down to it.

share|improve this answer

I did something like this a while ago and successfully implemented YUI's data table combined with Django

http://developer.yahoo.com/yui/datatable/

This gives you column sorting, pagination, scrolling and so on. It also allows you to use a variety of data sources such as JSON or XML.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.