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

409
Views
JSX: 'event' is deprecated
onSelectedShowdateChangeHandler() {
  this.setState(
    { selectedShowdate: event.target.value },
    this.getShowtimeList
  );
}

Hi guys, I'm having a "event" is deprecated error here, not so sure what I should replace it with. Thank you so much

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

0

Event handler callbacks will be given an event object as an argument when invoked. Just add that argument to your function:

onSelectedShowdateChangeHandler(event) {
    // Function body
}

It's up to you, but some prefer to just name it e or similar to avoid clashing with the "global" event object.

about 4 years ago · Juan Pablo Isaza Report

0

Something like this should work:

onSelectedShowdateChangeHandler(myEvent) {
  this.setState(
    { selectedShowdate: myEvent.target.value },
    this.getShowtimeList
 );
}

I'm surprised you're still using it, unless you're using legacy code. event was deprecated years ago.

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!