• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

"Scrolling" a page which has huge data

 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I wanted to know if we have any Scroll bar events in JavaScript. I am doing a web application which handles huge data. It is kind of large data oriented application. I do not want to display all the data same time. Can we have scroll bar events to display chunks of data into web page.
Any help is much appreciated
 
Ranch Hand
Posts: 4716
9
Scala Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
sorry for not respomding sooner. if i hadf known your question i would have. Just use frames, they automatically generate a scroolbar if data is too much. In case you dont know how to use frames i will find an example i did...hold on....


<html>
<head>
<title>Magic Shop</title>
</head>
<frameset rows="*,50" border="0" framespacing="0" frameborder="0">
<frameset cols="50%,50%" border="0" framespacing="0" frameborder="0">
<frame src="Gandalf.html" name="Gandalf">
<frame src="Welcome.html" name="Quiz">
</frameset>
<frame src="CopyrightNotice.html" name="Footer">
</frameset>
<noframes>
This page requires a frames-capable browser.
</noframes>
</html>


I hope you already understand using frames. I'm too lazy to look for a link right now

[This message has been edited by Randall Twede (edited October 23, 2001).]
 
ravindra maddi
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks so much. This helps me a lot.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic