-
Notifications
You must be signed in to change notification settings - Fork 100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fields with "value" attributes become uneditable after transform #14
Comments
The same goes for |
the above same issue for me.. and i also checked article https://themeteorchef.com/tutorials/click-to-edit-fields-in-react and deafultValue is not worked thsi,state.something value |
The same issue is with me. My Codepen link is https://codepen.io/asinha/pen/EXaZJm?editors=1111 , when I set getInitialValue to '' the input box becomes non-editable |
Same issue! |
Same issue for input |
same |
In order for "value" to behave as it does in HTML, the created React components must use "defaultValue". "value" in React creates a controlled component, which makes react-magic generate un-editable inputs.
Currently:
To behave as expected:
The text was updated successfully, but these errors were encountered: