Auto fill issue in TextboxComponent

Why cant i turned off autocomplete in texbox component? I try to again and again but nothing

 <TextBoxComponent
                        placeholder='Email Confirmation'
                        floatLabelType='Auto'
                        autocomplete={'off'}
                        value={this.confirmEmail}
                        onChange={(e: any) => {
                          this.confirmEmail = e.value;
                          if (this.email === this.confirmEmail) {
                            this.setState({ ApplicationUserID: this.email });
                          }
                        }}
                      />



1 Reply

PO Prince Oliver Syncfusion Team March 2, 2022 12:31 PM UTC

Hi Yahya, 

You can try setting the value for autocomplete attribute as any random string and check the if the issue is resolved. 

<TextBoxComponent placeholder='Email Confirmation' floatLabelType='Auto'  autocomplete={'custom'} ></TextBoxComponent> 



Regards, 
Prince 


Loader.
Up arrow icon