I get list of all products (say 100) from my database using sql query, then I have to pick each row from result set using foreach loop to get more information about the product (using few more sql queries) and then generate html for display. But the page comes back alive after the entire foreach loop for all 100 items completed. (it takes a long time).
I want it to be like if there are 100 items, and when I load the page the view should be like 1st loading... the moment that is loaded it updates the view with that and proceed to show second one is loading and so on.
Also how can it have that effect when a new one is added it is green background and slowly fades in to default white background, indicating it is added just now.
Thanks.