Would be super nice to have infinite scroll added to the datatable component. I think this works much better on mobile than pagination. Maybe by adding a loadMore property.
<q-data-table :loadMore="getMyData">
...
</q-data-table>
I need that feature too.
Same here!
I'm also intersted !!!!
Nice! Can be required define the min-height of Datatable for use this options.
I'd venture to say, this needs to be its own component. Datatable has a lot of features, which don't really jive with an infinite scroll capability, or rather, the features become useless. I'm thinking about the sort and filter features, for instance. It shouldn't be too hard to build your own simple datatable with QInfiniteScroll.
Scott
Hi! Any news on this? :D
I was wishing it a few minutes ago haha!
A small piece of mine: implementing load more button is pretty easy:
<template slot="bottom">
<q-btn outline color="positive" label="Load More..." @click="loadMore" style="width: 100%"/>
</template>
This can now be implemented in QVirtualScroll in table mode (QMarkupTable).
Would be super nice to have infinite scroll added to the datatable component. I think this works much better on mobile than pagination. Maybe by adding a loadMore property.
<q-data-table :loadMore="getMyData"> ... </q-data-table>
I want this feature. This helps if implemented. :)
Most helpful comment
I need that feature too.