react-infinite-scroller icon indicating copy to clipboard operation
react-infinite-scroller copied to clipboard

⏬ Infinite scroll component for React in ES6

Results 100 react-infinite-scroller issues
Sort by recently updated
recently updated
newest added

**Describe the bug** I use the component as a tbody element the load more method is never fired on scroll on the table. Used like that ``` this.loadMore(page)} hasMore={true} element="tbody"...

Hi there, First of all - great component. I've used it for many projects. Thanks for maintaining it! I recently tried using it to make the rows of a table...

The new scroll anchoring feature introduced in Google Chrome 56 forces the scrolling to the bottom of the page, which in turn triggers infinite scrolling. See https://github.com/angular-ui/ui-scroll/issues/138. A temporary fix...

First, here is the code I'm working with: ``` import React from 'react' import InfiniteScroll from 'react-infinite-scroller' const Step2Table = props => { const { urlLists } = props const...

**Describe the bug** As per title, if not using a direct parent as the scroll target the whole library misbehaves. In my personal project the code will not, ever, call...

upon scroll to the end, does not trigger the onLoadMore despite hasMore=true Version `1.2.4` here is the configuration used threshold={200} initialLoad={false} loadMore={() => console.log('load more')} hasMore={true} useWindow={false}

**Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] Has anyone tried react-infinite-scroller...

I have a scrollable parent div, I've used infinite scrollable component inside it. The issue that I'm facing is that loadMore method is invoked before reaching the bottom of the...

In browser all works fine ``` scrollParentRef.current} loader={ } > {data.map((item) => ( ))} ``` But when start testing it not calls fetchData (loadMore) fn