X.PagedList icon indicating copy to clipboard operation
X.PagedList copied to clipboard

Library for easily paging through any IEnumerable/IQueryable in ASP.NET

Results 14 X.PagedList issues
Sort by recently updated
recently updated
newest added

Class = X.PagedList.Web.Common.AjaxOptions Property = UpdateTargetId --> "#" is prepended automatically. Property = LoadingElementId --> "#" is NOT prepended automatically. Example: var o = new AjaxOptions { HttpMethod = "get",...

When upgrading from 8.0.7 to 8.1.0 "PagedListRenderOptionsBase" does not exist anymore. Since PagedListRenderOptions is a sealed class, there is nothing left we can use to inherit

I am getting an exception when using the ToPagedList and ToPagedListAsync extensions. Unfortunately, I cannot share the data, but my query looks something like this ```csharp var owners = from...

**Describe the bug** Take a look here ``` @Html.PagedListPager((IPagedList)Model, p => Url.Content($"~/{Context.Request.GetUri().AbsolutePath}?query={ViewBag.query}&num={p}&Size={ViewBag.Size}"), new PagedListRenderOptions { PageClasses = new string[] { "active" }, UlElementClasses = new string[] { "pagination justify-content-center" },...

We are trying to use the FunctionToTransformEachPageLink but it does not work. Here is the following code: (P.S. on the li we also do not egt the option of InnerHTML....

Is there any way to use this control with an Infinite Scroll script? Has anyone tried it or are there any examples? Thanks

I have created pagination for .Net Core 3 project using X.PagedList nuget, when I click on page number it call action that retrieve partial view and update div for data...

https://github.com/dncuug/X.PagedList/issues/173

**Describe the bug** In 8.4.7, when trying to call PagedListExtensions.ToPagedListAsync(this IQueryable superset, int? pageNumber, int pageSize, CancellationToken cancellationToken), the compiler returns the following error: `CS0121 The call is ambiguous between...

**Describe the bug** For the release 9.1.2, the parsing behavior of the UpdateTargetId in AjaxOptions (i.e. "data-ajax-update" for unobtrusive ajax) has been changed: Previously, one would only specify the ID...