We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6538c9 commit 21c51e8Copy full SHA for 21c51e8
Radzen.Blazor/PagedDataBoundComponent.cs
@@ -475,12 +475,14 @@ protected void CalculatePager()
475
{
476
topPager.SetCount(Count);
477
topPager.SetCurrentPage(CurrentPage);
478
+ topPager.ChangeState();
479
}
480
481
if (bottomPager != null)
482
483
bottomPager.SetCount(Count);
484
bottomPager.SetCurrentPage(CurrentPage);
485
+ bottomPager.ChangeState();
486
487
488
Radzen.Blazor/RadzenPager.razor.cs
@@ -406,6 +406,11 @@ async Task OnLastPageClick(int endPage)
406
407
408
409
+ internal void ChangeState()
410
+ {
411
+ StateHasChanged();
412
+ }
413
+
414
internal void SetCurrentPage(int page)
415
416
if (CurrentPage != page)
0 commit comments