admin管理员组文章数量:1344229
I have a select input which I create by using TextField ponent from Material-UI lib. I need to manually lose focus after some option been selected. I tried to use a reference to the TextField using 'inputRef' prop, which works great but when I try to fire blur() function on this.selectInput.current like I did here but without MaterialUI lib.
class Select extends React.Component {
constructor(props) {
super(props)
this.state = {
selected: ''
}
this.inputRef = React.createRef();
this.onChangeHandler = this.onChangeHandler.bind(this)
}
onChangeHandler(e){
this.inputRef.current.blur()
this.setState({
selected: e.target.value
})
}
render() {
const {selected} = this.state;
return (
<select value={selected}
onChange={this.onChangeHandler}
ref={this.inputRef}>
<option value=''>Please select</option>
<option value='1'>One</option>
<option value='2'>Two</option>
</select>
)
}
}
ReactDOM.render(<Select />, document.querySelector("#app"))
<script crossorigin src="@16/umd/react.production.min.js"></script>
<script crossorigin src="@16/umd/react-dom.production.min.js"></script>
<div id="app"></div>
I have a select input which I create by using TextField ponent from Material-UI lib. I need to manually lose focus after some option been selected. I tried to use a reference to the TextField using 'inputRef' prop, which works great but when I try to fire blur() function on this.selectInput.current like I did here but without MaterialUI lib.
class Select extends React.Component {
constructor(props) {
super(props)
this.state = {
selected: ''
}
this.inputRef = React.createRef();
this.onChangeHandler = this.onChangeHandler.bind(this)
}
onChangeHandler(e){
this.inputRef.current.blur()
this.setState({
selected: e.target.value
})
}
render() {
const {selected} = this.state;
return (
<select value={selected}
onChange={this.onChangeHandler}
ref={this.inputRef}>
<option value=''>Please select</option>
<option value='1'>One</option>
<option value='2'>Two</option>
</select>
)
}
}
ReactDOM.render(<Select />, document.querySelector("#app"))
<script crossorigin src="https://unpkg./react@16/umd/react.production.min.js"></script>
<script crossorigin src="https://unpkg./react-dom@16/umd/react-dom.production.min.js"></script>
<div id="app"></div>
I got an error that blur() function does not exist. I understand that Material UI used custom el. to create UI and I target just a div or whatever. So the question is it another way to get the exact behavior (lose focus on the select event) when using TextField ponent or maybe I did something wrong?
Material UI v1.3.1 | React v16.4.2
Share Improve this question asked Aug 16, 2018 at 15:51 SakhroSakhro 911 silver badge5 bronze badges3 Answers
Reset to default 6Try to define onClose method with the following body:
onClose() {
setTimeout(() => {
document.activeElement.blur();
}, 0);
}
and then pass this method to onClose prop of the select element.
I faced similar issue with blur event in react material-ui Select ponent
Below solution worked for me.
import Select from '@material-ui/core/Select';
<Select
...
onClose={()=>{
setTimeout(() => {
setOpen(false)
handleSubmit();
}, 0);
}}
/>
The simplest way, it's just rerender it with a new key:
import { useState } from 'react';
import { TextField } from '@mui/material';
import { nanoid } from '@reduxjs/toolkit';
...
const [inputKey, setInputKey] = useState<string>(nanoid());
...
// You need to blur here, for example.
const someFunc = () => {
setInputKey(nanoid())
}
...
<TextField select key={inputKey} />
本文标签:
版权声明:本文标题:javascript - Manually lose focus from TextField select component, Material UI & React - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743739859a2530688.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论