Rank: Member Groups: Member
Joined: 1/6/2016 Posts: 21
|
We had upgraded our EO browser version to 26.0.34. After the upgrade, we are getting autofill on some of the applications. How can we disable it on global setting? We don't want any autofills at all. EO.WebBrowser.Runtime.DefaultEngineOptions.ExtraCommandLineArgs = "--disable-popup-blocking --disable-autofill"; tried using this but its not working
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,499
|
Hi, You can call this method to disable EngineFeatures.AutoComplete: https://www.essentialobjects.com/doc/eo.webengine.engineoptions.setfeaturestate_overloads.htmlFor example:
Code: C#
EO.WebEngine.EngineOptions.Default.SetFeatureState(EngineFeature.AutoComplete, false);
Make sure you call this as early as possible in your application before the browser engine initializes. It has no effects if the browser engine has already been initialized. Please let us know if it works for you. Thanks!
|