We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
onChange
If the argument to onChange is not an event, use the value as a value setter.
This will help native users #35
Work may be required to differentiate between an event which replaces state and toggles state.
Toggle (currently the case when event target is a checkbox)
// ['checkbox1'] onChange('checkbox2') // ['checkbox1', 'checkbox2'] onChange('checkbox1') // ['checkbox2']
Replace/set state
// "" onChange("John") // "John" onChange("Carla") // "Carla"
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
If the argument to
onChange
is not an event, use the value as a value setter.This will help native users #35
Work may be required to differentiate between an event which replaces state and toggles state.
Toggle (currently the case when event target is a checkbox)
Replace/set state
The text was updated successfully, but these errors were encountered: