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