Most voted "pagedlist" questions
Pagedlist is a library made for ASP.NET MVC to allow paging done by Controllers and Views.
Learn more…6 questions
Sort by count of
-
1
votes1
answer593
viewsPagedlist: Data Pagination with Ajax
I’m using Pagedlist with Ajax, but I can’t change the page because when I click on the button, which represents the page, the value that is going to the controller is null. I made the following…
-
1
votes1
answer180
viewsAdd parameter using Pagedlist in logging detail and page links
Does anyone know how to keep a parameter between the various pages of Pagedlist? The situation is as follows: I used the Scope_Identity when creating a row in a table, because I did the Id of the…
-
0
votes1
answer89
viewsError while paging using Pagedlist with List<Dinamyc>
I’m trying to make a pagination of a Webgrid using Pagedlist but there is conversion error: Additional information: Cannot convert type implicitly 'Pagedlist.Pagedlist' in…
-
0
votes2
answers57
viewsNot changing the page when changing the page
When I try to go to page 2, it shows the site loading, but only brings me the first page information of my page 1. My Controller: public ActionResult Index(int? page) { IList<Abastecimento>…
-
0
votes0
answers29
views@Html.Pagedlistpager No Bootstrap
I am building a small project in Asp.net MVC and I need to make use of the X.Pagedlist library, I was able to make the pagination all right, but it is not applying the Bootstrap, which should be…
-
0
votes2
answers1065
viewsHow to Paginate Data with Pagedlist in Asp.Net MVC?
I have a user table with 10,000 entries. I want to paginate these records using LIMIT and OFFSET with Pagedlist but I’m not able to do that. Currently the system searches all records to then…