admin管理员组文章数量:1341686
How can I ensure that the sole draft-js
textbox on my UI autofocuses on page load?
There is a documented method called focus
, however I am unsure of the syntax required for implementation.
How can I ensure that the sole draft-js
textbox on my UI autofocuses on page load?
There is a documented method called focus
, however I am unsure of the syntax required for implementation.
2 Answers
Reset to default 9If your editor is initiated with some default value then doing just this.refs.editor.focus()
will have cursor at starting of the text. So to move cursor to the end we need to do something like this in ponentDidMount
ponentDidMount() {
this.setState({
editorState: EditorState.moveFocusToEnd(this.state.editorState), // EditorState imported from draft-js
});
}
https://github./draft-js-plugins/draft-js-plugins/blob/master/draft-js-plugins-editor/src/Editor/moveSelectionToEnd.js -- link to the method
see here
basically, you'd do something like
<Editor ref="someRef" />
and
ponentDidMount = () => {
this.refs.someRef.focus();
}
本文标签: javascriptAutofocus of Draftjs test editorStack Overflow
版权声明:本文标题:javascript - Autofocus of Draftjs test editor - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743610861a2509992.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论