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.

Is there any working example of onInfiniteScroll property of ons-page element?



  • Whenever I use Ons.Page, it automatically converted to ons-page; you may check this in Developer Tools in Monoca LocalKit. I tried following:

    <Ons.Page onInfiniteScroll={this.props.onInfiniteScroll.bind(this)}>
    </Ons.Page>
    

    to generate

    <ons-page oninfinitescroll="function (done) { try { /* ... */ } finally { done() } }">
    </ons-page>
    

    on onsenui 2.0.5 and react-onsenui 0.7.8.

    It seems not work. Is there any proper example to use onInfiniteScroll, or any easy way to debug the Onsen framework?