How to load the content while user scroll the web page. How to implement this?
|
Generally speaking, you will need to have some sort of structure like this
Then, you will need to detect when you are getting close to the end of the page, and fetch more data
You may need to keep a javascript variable called something like
I did exactly this on my company's search page. |
|||||||||||
|
|
You are referring to Dynamic Progressive Loading. Is a pretty well documented concept and there is even some built-in support for it from different libraries. JQuery actually has a GridView that supports progressive loading pretty easily for example. You will need to utilize AJAX to implement this feature. |
|||
|
|
|
Just to expand on Dutchie432. In my experience the
may not be true consistently( personally i couldnt make it true cause it was jumping numbers ).
So what i did to make it work, was to use >= instead of == . Then, unbinding the scrollTop before making my ajax request. Then binding it again if the ajax has returned any data (which means there may be more). Here it is
` |
|||
|
|
You can use some library like jQuery to retrieve the content , then append it to the page content, Or you can use some jquery plugin like this: http://gbin1.com/technology/jquerynews/20111017jquerypluginwaypoints/infinite-scroll/ |
|||
|
|
BlueRaja - Danny Pflughoeft– Dutchie432 Feb 16 '11 at 18:30