We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello,
What was the reason for infinite scroll to have 50ms delay when making the first poll? https://github.com/quasarframework/quasar/blob/dev/src/components/infinite-scroll/QInfiniteScroll.js#L74
This makes loading state a bit harder to manage. Here is an example: https://jsfiddle.net/waugrryy/1731/
When the page loads:
This results in unnecessary flickering. Doesn't look that nice.
Expected:
Thanks!
The text was updated successfully, but these errors were encountered:
I think simply setting the immediate parameter to true in this line https://github.com/quasarframework/quasar/blob/dev/src/components/infinite-scroll/QInfiniteScroll.js#L74 should solve this, I also see no obvious reason why it should be debounced on the first call.
immediate
Sorry, something went wrong.
89ea438
Available in future 0.15.11
@rstoenescu Does it make sense not to debounce the first poll after resume as well?
Imagine you want to apply a filter to a list of items. You would do:
this.$refs.infiniteScroll.reset() this.$refs.infiniteScroll.resume()
No branches or pull requests
Hello,
What was the reason for infinite scroll to have 50ms delay when making the first poll?
https://github.com/quasarframework/quasar/blob/dev/src/components/infinite-scroll/QInfiniteScroll.js#L74
This makes loading state a bit harder to manage.
Here is an example:
https://jsfiddle.net/waugrryy/1731/
When the page loads:
This results in unnecessary flickering. Doesn't look that nice.
Expected:
Thanks!
The text was updated successfully, but these errors were encountered: