-
Hello !
When I try to double click on a row to trigger the event, the page size changes to 5 (the default value) on the first click if a another page size has been selected. |
Beta Was this translation helpful? Give feedback.
Answered by
stsrki
Jun 3, 2021
Replies: 1 comment 1 reply
-
It's because you have |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
salucien
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It's because you have
PageSize="5"
. Blazor works like that. It will reset it every time you refresh something on a page. Either remove that line or make it like@bind-Page="@yourPageNumberVariable"