How can I set the focus on a material-ui TextField component?
material-ui TextField
componentDidMount() { ReactDom.findDomNode(this.refs.myControl).focus() }
I have tried above code, but it does not work :(
You can use the autoFocus attribute.
autoFocus
<TextField value="some value" autoFocus />
2.1m questions
2.1m answers
60 comments
57.0k users