Replies: 1 comment
-
For now you will have to position the select yourself. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, I want to ask if FluentPaginator includes item-per-page properties. Or if I can create item-per-page component using FluentSelect as provided code below:
<FluentPaginator State="_paginationState" /> <FluentStack HorizontalAlignment="HorizontalAlignment.Right" HorizontalGap="20"> <div style="display: inline-flex; align-items: center; border: 1px solid #e8ecef; border-radius: 7px;"> <FluentSelect Width="fit-content;" Value="@selValue" ValueChanged="OnValueChanged" TOption="string"> <FluentOption Value="10">10 Items</FluentOption> <FluentOption Value="25">25 Items</FluentOption> <FluentOption Value="50">50 Items</FluentOption> <FluentOption Value="100">100 Items</FluentOption> </FluentSelect> <FluentLabel Style="padding: 0 12px"> Per Page </FluentLabel> </div> </FluentStack>
It looks like in the picture:
But what I want to achieve is the items per page will be right next to the page selector where the red mark is:
Is there any way to achieve that ?
Beta Was this translation helpful? Give feedback.
All reactions