Notice: The Monaca & Onsen UI Community Forum is shutting down.
For Onsen UI bug reports, feature requests and questions, please use the Onsen UI GitHub issues page. For help with Monaca, please contact Monaca Support Team.
Thank you to all our community for your contributions to the forum. We look forward to hearing from you in the new communication channels.
some problem about to use 'on-infinite-scroll'
-
can anyone tell me how to load more with ‘on-infinite-scroll’.when scrolling to the bottom of the page
-
@peskoe You just need to add
on-infinite-scroll="handler"
to theons-page
and then definehandler
as a function with adone()
callback, for example:var handler = function(done) { console.log('adding item'); done(); }