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
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 infinite scroll, but the loadMore function does not fire. I tried something like this -
<table> <thead> <tr> <th></th> <th></th> </tr> </thead> <InfiniteScroll initialLoad={false} hasMore={true} loadMore={loadMore} element={'tbody'} useWindow={true}> {people..map(person => ( <tr key={person.id}> <td>{person.age}</td> <td>{person.age}</td> </tr> ))} </InfiniteScroll> </table>
I've read others report that they got it to work with tables, but couldn't find a solution.
I don't want to move to another component just for the table use-case.
Could someone help out?
The text was updated successfully, but these errors were encountered:
@animeshchat, Were you able to find a solution to it?
Sorry, something went wrong.
Nope, I didn't.
I had shrugged this under the mat, but it's becoming hard to ignore. I might fork and attempt to fix. I'll post the link here when I do.
Maybe you should see this, it solved the same problem. #168 (comment)
No branches or pull requests
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 infinite scroll, but the loadMore function does not fire. I tried something like this -
I've read others report that they got it to work with tables, but couldn't find a solution.
I don't want to move to another component just for the table use-case.
Could someone help out?
The text was updated successfully, but these errors were encountered: