i have 100s of products and i need to show their pictures on a web page.
i have no knowledge about mvc or entity framework so i need to do this with framework 4.0 and i can use jquery and ajax for this
i have no experience with lazy loading so first what should be my query? should i use paging in query so when the page scroll down the next page can be load or should i load whole data then if user scroll down the next images will be load?
can someone help me about this? my sample is same as pinterest.com or facebook vs when page scroll down the next ones will be loaded to user thats all.
I like this http://www.appelsiini.net/projects/lazyload lazyload jquery plugin, but I dont know how to use it with MVC4, any exmaple or sample or suggestion plz!
ercaneraslan
Member
1 Points
4 Posts
Lazy Loading in ASP.NET 4.0 using jquery or ajax
Jun 22, 2012 08:09 AM|LINK
Hi
i need to list images using lazy loading
i have 100s of products and i need to show their pictures on a web page.
i have no knowledge about mvc or entity framework so i need to do this with framework 4.0 and i can use jquery and ajax for this
i have no experience with lazy loading so first what should be my query? should i use paging in query so when the page scroll down the next page can be load or should i load whole data then if user scroll down the next images will be load?
can someone help me about this? my sample is same as pinterest.com or facebook vs when page scroll down the next ones will be loaded to user thats all.
how can i do it with jquery or ajax ?
is there any sample ?
urenjoy
Star
13435 Points
2022 Posts
Re: Lazy Loading in ASP.NET 4.0 using jquery or ajax
Jun 22, 2012 08:20 AM|LINK
There are 2 things, to load images asynchonously and to load content on scroll.
check following:
http://stackoverflow.com/questions/5117421/how-to-load-images-dynamically-or-lazily-when-users-scrolls-it-into-view
For infinite scroll, check out following sample:
http://code.msdn.microsoft.com/VBASPNETInfiniteLoading-10c3f379
ercaneraslan
Member
1 Points
4 Posts
Re: Lazy Loading in ASP.NET 4.0 using jquery or ajax
Jun 22, 2012 08:31 AM|LINK
For infinite scroll, check out following sample:
http://code.msdn.microsoft.com/VBASPNETInfiniteLoading-10c3f379
this is wonderful exactly what i need! THANKSSSS!!!!!
bcompt143
Member
2 Points
6 Posts
Re: Lazy Loading in ASP.NET 4.0 using jquery or ajax
Feb 25, 2013 08:14 AM|LINK
I like this http://www.appelsiini.net/projects/lazyload lazyload jquery plugin, but I dont know how to use it with MVC4, any exmaple or sample or suggestion plz!