Questions tagged as 'pagedlist'

1
answer

PagedList: Data Paging with Ajax

I'm using PagedList with Ajax, but I'm not getting a page change because when I click the button that represents the page, the value that is going to the controller is null. I made the following structure: View: @model PagedList.IPagedList&...
asked by 18.12.2016 / 01:23
1
answer

Add parameter using PagedList in record detail and page links

Does anyone know how to keep a parameter between the various pages of the PagedList? The situation is this: I used Scope_Identity when creating a row in a table, since I made the Id of the created parameter item to another acti...
asked by 24.04.2017 / 04:36
2
answers

How to do data pagination 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 can not do that. Currently the system searches all the records to later paginate and I do not want it to be this way, I want to...
asked by 06.02.2018 / 18:17
0
answers

How to load 10 in 10 records on a table using PagedList in Asp.net MVC Core?

I have a table that will contain 300,000 records and I need to create a smart paging and performance. I found many tutorials on the net that teach paging using PagedList, but in all cases, all the records are loaded and then pagination is done....
asked by 06.06.2018 / 01:45
2
answers

You are not changing the page when you change the pagination

When I'm trying to go to page 2, it shows the site loading, but it only brings me the first information on page 1 of my page. My Controller: public ActionResult Index(int? page) { IList<Abastecimento> abastecimento = dao.List...
asked by 18.09.2017 / 22:45
1
answer

Error when paging using PagedList with ListDinamyc

I'm trying to paginate a WebGrid using PagedList but a conversion error occurs:    Additional information: Can not implicitly convert type   'PagedList.PagedList' in   'System.Collections.Generic.List' I do not know if it occurs becau...
asked by 12.06.2017 / 21:13