You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to get a reference to the ScrollArea component, in order to obtain various information about the scroll position. I cannot use the supplied onScroll function. So how do I get a ref, as when I do this...
ref={scrollArea => this.scrollArea = scrollArea}
and try and get the I get scrollTop...
const scrollTop = this.scrollArea.scrollTop;
I get an error:
Uncaught TypeError: Cannot read property 'scrollTop' of null
The text was updated successfully, but these errors were encountered:
I want to get a reference to the ScrollArea component, in order to obtain various information about the scroll position. I cannot use the supplied
onScroll
function. So how do I get a ref, as when I do this...and try and get the I get scrollTop...
I get an error:
The text was updated successfully, but these errors were encountered: