-
Notifications
You must be signed in to change notification settings - Fork 844
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed page size for tables #435
Comments
++ I never liked the fact that the table always shows the page size option... |
Hi - wanted to ask if this issue was still open.
Otherwise, if the focus of the issue is instead to provide an alternative interface (e.g. automatically detecting when |
Thanks for checking! Yes, this functionality does exist, exposed as the
|
EuiInMemoryTable's and EuiBasicTable's
|
Currently you can specify the
pageSizeOptions
inEuiInMemoryTable
(and most likely others), which will always show the page size options select box or when not specified not having pagination at all.To rebuild our current table vis using EUI, we would require to configure the page size from the outside without showing the options. I think we could create another parameter, like
fixedPageSize
or more implicitlypageSizeOptions
using a numeric value instead of an array, that will cause the table not to show the page size selector, but always use this page size.TL;DR: Option to use pagination with a specified page size, without showing the select box below it :-)
The text was updated successfully, but these errors were encountered: