ValueInputProps.onValue()method
Called when the value for the input changes, so you can make changes based on the new value (or undefined to set back to default).
onValue(value: O | undefined): void
{
value?: O | I | undefined;
onValue(value: O | undefined): void;
}| Property | Type | |
|---|---|---|
.value | OI | The current value of the input. |
"Value inputs" are inputs that generate a value, like <input> or <textarea>
Called when the value for the input changes, so you can make changes based on the new value (or undefined to set back to default).
onValue(value: O | undefined): void