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
const options = [ { key: 1, text: 'United States', value: 'US' }, { key: 2, text: 'Canada', value: 'CA' }, { key: 3, text: 'Brazil', value: 'BR' }, ] <Dropdown search selection options={options} placeholder='Select Country' autoComplete='country' // HERE />
<div role="combobox" aria-expanded="false" class="ui search selection dropdown"> <!-- autocomplete on input --> <input type="text" aria-autocomplete="list" autocomplete="country" class="search" tabindex="0" value=""> ... </div>
<!-- autocomplete on div? --> <div autocomplete="country" role="combobox" aria-expanded="false" class="ui search selection dropdown"> <input type="text" aria-autocomplete="list" autocomplete="off" class="search" tabindex="0" value=""> ... </div>
0.79.1
The text was updated successfully, but these errors were encountered:
Please use the shorthand for the search input.
https://react.semantic-ui.com/modules/dropdown#dropdown-example-search-input
Sorry, something went wrong.
Didn't work for me...
const options = [ { key: 1, text: 'United States', value: 'US' }, { key: 2, text: 'Canada', value: 'CA' }, { key: 3, text: 'Brazil', value: 'BR' }, ] <Dropdown search selection options={options} placeholder='Select Country' searchInput={{ autoComplete: 'country' }} // HERE />
Produces:
<div role="combobox" aria-expanded="false" class="ui search selection dropdown"> <!-- autocomplete isn't on above div, but it's still "off" below --> <input type="text" autocomplete="off" aria-autocomplete="list" class="search" tabindex="0" value=""> ... </div>
See #2738.
No branches or pull requests
Steps
Expected Result
Actual Result
Version
0.79.1
The text was updated successfully, but these errors were encountered: