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
Is there any way to enable the autoComplete attribute on InputGroups? I can't seem to get it to work in my react project.
autoComplete
This would be where previously entered form values are made available to the user. Very useful for addresses during a signup process.
#593 and #118 mention it but it is unclear to me which component implements it.
Example of feature in question:
My jsx snippet in question:
<form> <FormGroup label='Address 1'> <InputGroup autoComplete='on' placeholder='123 Sunset blvd sw' value={addressLine1} onChange={(event) => setAddressLine1(event.currentTarget.value)} /> </FormGroup> // ... </form>
Let me know if more information is needed.
The text was updated successfully, but these errors were encountered:
Yes, that's the right syntax for using this attribute with InputGroup. Maybe one of these is the issue?
InputGroup
Sorry, something went wrong.
@adidahiya Wow I totally missed that 🙈. Thank you for your help.
No branches or pull requests
Environment
Question
Is there any way to enable the
autoComplete
attribute on InputGroups? I can't seem to get it to work in my react project.This would be where previously entered form values are made available to the user. Very useful for addresses during a signup process.
#593 and #118 mention it but it is unclear to me which component implements it.
Example of feature in question:
My jsx snippet in question:
Let me know if more information is needed.
The text was updated successfully, but these errors were encountered: