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
similar to #825
with something like
format={(value: string) => { const stripped = value.replace(/\D/g, ''); return stripped ? `${stripped}%` : ''; }}
and an isAllowed rule allowing just 1 to 100 values, typing e.g. "555" results in 55% displayed visually, but 555 in the form state value.
555
Using with react-hook-form FWIW.
react-hook-form
The text was updated successfully, but these errors were encountered:
No branches or pull requests
similar to #825
with something like
and an isAllowed rule allowing just 1 to 100 values, typing e.g. "555" results in 55% displayed visually, but
555
in the form state value.Using with
react-hook-form
FWIW.The text was updated successfully, but these errors were encountered: