Top "Pagedlist" questions

PagedList makes it easier for .Net developers to write paging code.

Using a PagedList with a ViewModel ASP.Net MVC

I'm trying to using a PagedList in my ASP.Net application and I found this example on the Microsoft website …

c# asp.net-mvc asp.net-mvc-viewmodel pagedlist
PagedList using LINQ Skip and Take, but show paging using Count of results

I am trying to display a filtered list of of products, based on Category filter and ItemsPerPage but I'm having …

c# linq asp.net-mvc-4 pagination pagedlist
Using paging in partial view, asp.net mvc

I'd greatly appreciate if someone could advise on following: In my view I display the list of items: @model PagedList.…

c# asp.net-mvc asp.net-mvc-partialview pagedlist
Ajax Pagination in PagedList.MVC using partial Page

PagedList.Mvc is working fine if I do not use partial page but when I use partial page with ajax …

asp.net-mvc pagination asp.net-ajax pagedlist
PagedList error: The method 'OrderBy' must be called before the method 'Skip'

Here's the full error message: The method 'Skip' is only supported for sorted input in LINQ to Entities. The method …

c# asp.net-mvc-5 pagedlist
Using PagedList with a viewmodel MVC 3

I am trying to implement IPagedList with a viewmodel, my main view declaration is @model PagedList.PagedList<CustomerOrders.WebUI.…

c# asp.net-mvc asp.net-mvc-3 asp.net-mvc-viewmodel pagedlist
How to use PagedListPager with Model having List of object in MVC 4

I have a Model containing the below property: public List<AutoAdListVM> advertlist { get; set; } In my view this …

asp.net-mvc-4 paging pagedlist
Using @Html.DisplayNameFor() with PagedList

I've been trying out the PagedList package to get paging for my index views. Everything was going well, and at …

asp.net-mvc entity-framework razor asp.net-mvc-4 pagedlist
PagedList loses search filter on second page

I'm implementing a simple paged list Index using the example at http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/sorting-filtering-and-paging-with-the-entity-framework-in-an-asp-net-mvc-application My …

c# asp.net asp.net-mvc entity-framework pagedlist
AJAX pagedlist with partial view

I can't quite figure out how to get a partial view to render a paged list using ajax. The closest …

ajax asp.net-mvc pagedlist