T
TanStack4y ago
extended-salmon

Scroll row into view

Is there a way to scroll into a view a specific row? I have a table with many rows and no pagination and want a way to point people to a particular row, much like you can scroll to a line of code in GitHub using URL query string parameters
1 Reply
wise-white
wise-white4y ago
probably not built into react-table. You'd likely have to set up refs for each row and call scrollIntoView() on those

Did you find this page helpful?