I have a large data set and i want it should load incrementally so user have faster view loading.
|
feedback
|
|
You could implement pagination (using the
and in your view:
The documentation contains examples. | |||||||||
feedback
|
|
Or do it in Twitter way - get another portion when user scroll to the end of the page. | |||
|
feedback
|
|
You can use ajax for loading the data as Dima metioned. If your user experience is extremely important, you may need to load 2 or 3 portions more. For example, the page loads the first two portions, and then loads next two portions when the user scrolls the end of portion 1. This could make the experience more smoother. | |||
feedback
|