Is It Possible To Add Infinite Scrolling To React Tool Box Table Body?
I am using react-toolbox table component in my app(react-toolbox for material styles implementation). I need to add infinite scrolling pagination for the table body. I found some l
Solution 1:
Try to wrap a table inside a div and give a fixed height to that div also make overflow-y: scroll
table will be rendered inside the div which will be scrollable and also of fixed height.
Then render this whole markup as children of react-infinite-scroller
Post a Comment for "Is It Possible To Add Infinite Scrolling To React Tool Box Table Body?"