This seemed to be fixed for the TextField here - https://github.com/callemall/material-ui/issues/2189 - but I am unsure of how to stop propagation on the autocomplete. Any help is appreciated!
Material-UI: 0.14.4
React: 0.14.7
Browser: Chrome
same issue here, did you find any solution to fix it ?? @BinaryWasteland
It seems to be possible to hack around this issue by extending AutoComplete component and overriding it's handleChange function:
class MyAutoComplete extends AutoComplete {
constructor() {
super();
const originalHandleChange = this.handleChange;
this.handleChange = (event) => {
event.stopPropagation();
originalHandleChange(event);
};
}
}
However this is probably not a good solution.
had the same problem with radio buttons nested inside tabs.
Most helpful comment
It seems to be possible to hack around this issue by extending
AutoCompletecomponent and overriding it'shandleChangefunction:However this is probably not a good solution.