Skip to content
Advertisement

How to avoid input value reset in Reactjs?

I am referring to this tutorial for simple react autocomplete https://www.digitalocean.com/community/tutorials/react-react-autocomplete

But I have a slightly different requirement. Instead of typing something on the input field, I want all the suggestions to come up on clicking the input field. I am basically implementing a requirement where on clicking the input field, it should show user what are the available options.

Here is my sandbox https://codesandbox.io/s/distracted-easley-wdm5x

Specifically in the Autocomplete.jsx file (as mentioned below)

JavaScript

In the input element in return section,

JavaScript

I have added a onClick functionality that calls the function onClick2.

JavaScript

My function simply returns all the suggestions back on clicking the input field. I am able to select items from suggestions and it gets put in the input field. But when I click on the input field again, the value disappears.

I want this autocomplete suggestion to only show once on clicking the empty input field and after selecting the item from list, I should be able to edit the value further.

What am I doing wrong?

Advertisement

Answer

Input values are not stored into innerText, but in value prop.

Look at this:

JavaScript

This should solve your problem

Advertisement