You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi ! Long time no see ! How have you been doing ? The table component is not supposed to have such a limitation !
Here is a very simple sql file you can use to create a table with 20001 rows:
with recursive n(x) as (
select1union allselect x +1from n
where x <20001
)
select x from n;
Since SQLPage functions in a streaming fashion, you can even create an infinite table by removing the where clause from the query above. This will create a page that never stops loading (until your tab does not have enough memory and crashes).
That said, creating huge tables is probably not the best experience for users. It's generally recommended to facet your data, or make it filterable and sortable to create pages that are smaller, faster, and easier to navigate around.
I can't do much with these screenshots, unfortunately; if you want me to look into it you'll need to make a minimal reproduction that doesn't depend on your app !
The idea was just to show you what happens.
On the first capture, you see that the biggest number is 24808. The second capture shows that the smallest number is 10001, and on the third, that, when we sort table ascending, the last number showed by the table is 20000. So, in fact, "only" 10000 numbers are visible in the full table when it is sorted.
Of course, the best thing to do is to split table in pages for exemple and to use filters and search field.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
It seems that the table component has a limit of lines it can shows. It seems to be 20 000.
Is there a way to show more lines ?
All reactions