Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

235
Views
React Material UI TextField onchange handler continue default action

I have a MUI TextField input, that I want to do something when it changes, without preventing its native handling (without making it controlled input)

<TextField onChange={(e)=>{
    something(e.target.value)
    //maybe continueDefault() to make it still accept input
}}/>

How can I make it continue its default action, which is to allow it to receive and append text inputs after invoking my something() function with the data?

I wanted to allow this without having to make the input a controlled input, which is without using a state to store its value.

about 4 years ago · Juan Pablo Isaza
2 answers
Answer question

0

Have you tried your current solution? Passing just the onChange property without the value doesn't make it an controlled component, which is what you want. There is also no reason to use the hypothetical continueDefault(), since e.preventDefault() is never called.

You're current solution seems to work fine, and doesn't stop the text field from being further edited.

function something(value) {
  console.log(JSON.stringify(value));
}

function App() {
  return (
    <MaterialUI.TextField
      onChange={(e) => {
        something(e.target.value);
      }}
    />
  );
}

const root = ReactDOM.createRoot(document.querySelector("#root"));
root.render(<App />);
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" />
<script crossorigin src="https://unpkg.com/react@18/umd/react.development.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@18/umd/react-dom.development.js"></script>
<script crossorigin src="https://unpkg.com/@mui/material@5/umd/material-ui.development.js"></script>
<div id="root"></div>

about 4 years ago · Juan Pablo Isaza Report

0

I think you shoud use a ref, and ad and event handler. Something like that (untested)

const MyComponent = () => {
  
    const ref = useRef();

    useEffect(() => {
        const onChange = () => {
            something(ref.current.value)
        }
        ref.current.addEventListerner("change", onChange)
        return () => {
            ref.current.removeEventListener("change", onChange)
        }
    })

    return (
        <input ref={ref} />
    )

}
    const ref = useRef();

    useEffect(() => {
        const onChange = () => {
            something(ref.current.value)
        }
        ref.current.addEventListerner("change", onChange)
        return () => ref.current.removeEventListener("change", onChange)
    })

    return (
        <input ref={ref} />
    )

}
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!