Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

how to disable browser autofill in Autocomplete mui component

//disabled browser auto fill feature in material ui AutoComplete component with
//custom input
<Autocomplete
 ...
  renderInput={(params) => (
        <form autoComplete="off">
           <TextField .../>
       </form>
  )}
/>
Source by github.com #
 
PREVIOUS NEXT
Tagged: #disable #browser #autofill #Autocomplete #mui #component
ADD COMMENT
Topic
Name
1+5 =