Page 1 of 1

How to make a Twitter style growing list?

Posted: Fri Jul 25, 2014 12:26 am
by Kal

I have to display many rows of data (more than 100). I know how to do this with paging, using the tutorial provided. However, I would like to do it with a twitter-style "growing list". Fetch the first N number of items, and if they scroll to the bottom, fetch N more and add to the bottom of the list, etc., until all have been displayed. Is this possible to do?

-Kal.


How to make a Twitter style growing list?

Posted: Fri Jul 25, 2014 1:45 pm
by Maryna Brodina

Hello!

For example you can save results of every subsequent request adiing them manually with append() function as shown here http://jsfiddle.net/Gajotres/8uac7/


How to make a Twitter style growing list?

Posted: Fri Jul 25, 2014 4:21 pm
by Kal

Yes, that is certainly part of the answer, but there is much more to it! Anyway, thanks for the attempt.