You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
onFocus not firing on select element, I essentially have this except it has menu elements inside of it: <SelectField value={value} onFocus={() => console.log('I am focused')} />
and when I click in the select, no event is being fired.
Versions
Material-UI: v0.15.0-beta.2
React: 15
Browser: Chrome 49
The text was updated successfully, but these errors were encountered:
The same behaviour still occurs. I need to handle backspace press when a select is focussed. My workaround is to add an event listener to document onFocus and onBlur, but this just gets the div reference which is pretty useless.
Problem Description
onFocus not firing on select element, I essentially have this except it has menu elements inside of it:
<SelectField value={value} onFocus={() => console.log('I am focused')} />
and when I click in the select, no event is being fired.
Versions
The text was updated successfully, but these errors were encountered: