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
I'm a component to create a scrolled div that on componentDidMount completely scrolls (100% from the top).
div
componentDidMount
The problem is that it doesn't scroll on componentDidMount.
If I use setInterval inside componentDidMount with a few miliseconds delay to call scrollToY it does scroll.
setInterval
scrollToY
The component:
import React from "react"; import ReactScrollbar from 'react-scrollbar-js'; const ScrolledText = React.createClass({ propTypes: { text: React.PropTypes.string.isRequired }, componentDidMount() { if (this.scrollBar) { this.scrollBar.scrollToY("100%"); } }, saveScrollBarRef(ref) { this.scrollBar = ref; }, render() { const { text } = this.props; return ( <ReactScrollbar ref={this.saveScrollBarRef} style={{ height: "100%" }} > <div>{text}</div> </ReactScrollbar> ); } }); export default ScrolledText ;
I'm using it inside a simple div with a set height like this:
<div style={{height: "25px"}}> <EditionTextArea text={myLongText} /> </div>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm a component to create a scrolled
div
that oncomponentDidMount
completely scrolls (100% from the top).The problem is that it doesn't scroll on
componentDidMount
.If I use
setInterval
insidecomponentDidMount
with a few miliseconds delay to callscrollToY
it does scroll.The component:
I'm using it inside a simple
div
with a set height like this:The text was updated successfully, but these errors were encountered: