python - How to display database query results of 100,000 rows or more with HTML? -


we're rewriting website used 1 of our clients. user traffic on low, less 100 unique visitors week. it's nice interface data in our databases. allows them query , filter on different sets of data of theirs.

we're rewriting site in python, re-using same oracle database data on. current version written in old, old version of coldfusion. 1 of things coldfusion though displays tons of database records on single page. it's capable of displaying hundreds of thousands of rows @ once without crashing browser. uses java applet, , looks contents of rows perhaps compressed , passed in through html or something. there large block of data in html it's not displayed - it's rendered java applet.

i've tried several javascript solutions hinge on fact data present in html table or along lines. causes browsers freeze , run out of memory.

does know of solutions situation? our client loves ability scroll through of data without clicking "next page" link.

thank you, ryan

i have done describing using following (which works well):

jquery datatables

it enables 'fetch scroll' pagination, can disable pagination arrows in favor of 'forever' scroll.


Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

aspxgridview - Devexpress grid - header filter does not work if column is initially hidden -

c# - How to execute a particular part of code asynchronously in a class -