Fields being incorrectly recognized by Password Management Software

Hello

I raised a support ticket previously because LastPass password management software was dropping icons into some of my SfText fields.  Syncfusion advised that the following added to a sfText field would make the problem go away (and it does)


HtmlAttributes="@htmlAttributeLPIgnore"

    public Dictionary htmlAttributeLPIgnore = new Dictionary()
    {

        { "data-lpignore", "true" }
    };

We now have a situation where Microsoft Edge's inbuilt password management has incorrectly auto-filled a field (see below).  The field in question is a filter field at the top of a grid.  It is being auto-filled with a a username (the ASP Net identity user name that the user logged in with)


It is strange that it is just this one field.  I guess it may be to do with the config/cache in Edge password manager.

However, is it possible to somehow universally stop this from occurring:

-across all Syncfusion fields in a project
-and for all types of browser software / add-ins (Last Pass, Built-in browser password managers for Chrome, Edge, Safari etc.)

Many thanks
 














1 Reply 1 reply marked as answer

PO Prince Oliver Syncfusion Team December 16, 2020 11:40 AM UTC

Hello Richard, 

Thank you for contacting us. 

We can prevent most of instances of the browser autofill in textboxes by setting autocomplete="off" attribute. You can also try suggestions provided in the below online bug 


Also you can turn off the autofill settings in the browsers, kindly refer to the below blogs 


Regards, 
Prince 
1

Marked as answer
Loader.
Up arrow icon