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
For select field, if we press keyboard, it should focus on the option start with the letter same as key press.
Give a simple select with 3 options:
<Select value={this.state.age} onChange={this.handleChange} inputProps={{ name: 'age', id: 'age-simple', }} > <MenuItem value=""> <em>None</em> </MenuItem> <MenuItem value={1}>One</MenuItem> <MenuItem value={10}>Ten</MenuItem> <MenuItem value={50}>Fifty</MenuItem> </Select>
Press O, the first option should be focused Press F, the last option should be focused
Press O, T or F does on the keyboard does not have any action.
The text was updated successfully, but these errors were encountered:
Duplicate of #8191
Sorry, something went wrong.
No branches or pull requests
For select field, if we press keyboard, it should focus on the option start with the letter same as key press.
Give a simple select with 3 options:
Expected Behavior
Press O, the first option should be focused
Press F, the last option should be focused
Current Behavior
Press O, T or F does on the keyboard does not have any action.
The text was updated successfully, but these errors were encountered: