Hi everyone i have a question regarding on how to clear TextField after clicking the icon? thanks
JavaScript
x
22
22
1
const [filteredLocations, setFilteredLocations] = useState(locations);
2
3
const clearSearch = () => {
4
// i dont know what should i put here TextField.clear() or so what ever
5
};
6
const filterResults = (e) => {
7
.
8
setFilteredLocations(filteredLocations);
9
};
10
11
<TextField
12
placeholder="Search Locations"
13
onChange={filterResults}
14
InputProps={{
15
endAdornment: (
16
<IconButton onClick={clearSearch} edge="end">
17
<ClearIcon />
18
</IconButton>
19
)
20
}}
21
/>
22
Advertisement
Answer
Here is the whole solve. There was an error in the filterResults
function.
JavaScript
1
34
34
1
import {useState} from 'react'
2
import TextField from "@mui/material/TextField";
3
import IconButton from "@mui/material/IconButton";
4
import ClearIcon from '@mui/icons-material/ClearOutlined'
5
6
export default function App() {
7
const [filteredLocations, setFilteredLocations] = useState('');
8
9
const clearSearch = () => {
10
setFilteredLocations('')
11
};
12
const filterResults = (e) => {
13
setFilteredLocations(e.target.value);
14
};
15
16
17
return (
18
<div className="App">
19
<TextField
20
placeholder="Search Locations"
21
value={filteredLocations}
22
onChange={filterResults}
23
InputProps={{
24
endAdornment: (
25
<IconButton onClick={clearSearch} edge="end">
26
<ClearIcon />
27
</IconButton>
28
)
29
}}
30
/>
31
</div>
32
);
33
}
34
Codesnadbox link – https://codesandbox.io/s/how-to-clear-textfield-in-react-tb73t