Skip to content
Advertisement

Unable to update state from onClick event of MDBDatable row in React

I’m using MDBReact for the creation of a simple data table that has some rows and setMe and getMe buttons. onClick of setMe button I wish to set a value to the cropName state value and onClick of getMe button, I wish to retrieve the update state value.

The problem is that I only receive emptystring values every time inside the getMe function even after updating the state.

I have tried the following code, but unfortunately, it does not seem to update the state value. I only get an emptystring when the getMe button is clicked.

JavaScript

Here the live demo of my implementation.

Advertisement

Answer

It looks like the state updates are not available to the functions fired from the table row event. I got my way around it by using useEffect statement and setting the dependency as the property that gets modified by the table row event.

JavaScript
Demo
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement