I have a large data set and i want it should load incrementally so user have faster view loading.

link|improve this question

75% accept rate
feedback

3 Answers

up vote 0 down vote accepted

You could implement pagination (using the AsPagination extension method from the MvcContrib.Pagination namespace):

public ActionResult Index()
{
    IEnumerable<MyViewModel> model = ... fetch from somewhere the dataset
    return View(model.AsPagination(1, 10));
}

and in your view:

@model IPagination<MyViewModel>
@(Html
    .Grid<MyViewModel>(Model)
    .Columns(columns =>
    {
        columns.For(x => x.Id);
        columns.For(x => x.Name);
    })
)
@Html.Pager(Model)

The documentation contains examples.

link|improve this answer
dimitrov it pages automatically how can custom paginate mvccontrib grid. like by default it should load only first page but show no of pages.Later as the person clicks it should load accordingly – Amritpal Singh Sep 7 '11 at 10:01
@Amritpal Singh, in your controller action you could use the .AsPaginate extension method on your IEnumerable<T> which will automatically return an instance of IPagination<T> and then you will bind to this instance instead of the original dataset. – Darin Dimitrov Sep 7 '11 at 10:03
okay i will give a try on that – Amritpal Singh Sep 7 '11 at 10:05
I am using MVC2 I didnot find ASPagination method – Amritpal Singh Sep 7 '11 at 10:14
feedback

Or do it in Twitter way - get another portion when user scroll to the end of the page.

link|improve this answer
how i can achieve that – Amritpal Singh Sep 7 '11 at 10:01
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.

link|improve this answer
that i know what i have to do but i don't know how to do it using mvccontrib grid? – Amritpal Singh Sep 7 '11 at 9:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.