Enum AutoComplete
Defines whether the browser is allowed to automatically enter or select values for input fields using stored user data.
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
public enum AutoComplete
Remarks
The autocomplete feature leverages browser-stored user data such as previously entered values, saved passwords, or address information to provide suggestions and automatic filling capabilities. This enhances user experience by reducing repetitive data entry, but can be disabled for sensitive fields or when custom autocomplete functionality is preferred.
Examples
Controlling autocomplete behavior:
<SfTextBox AutoComplete="AutoComplete.Off" Placeholder="Sensitive information"></SfTextBox>
Fields
| Name | Description |
|---|---|
| Off | Disables browser autocomplete functionality, preventing automatic suggestions and requiring manual input for all values. |
| On | Enables browser autocomplete functionality, allowing automatic suggestions and filling based on user's previous inputs and saved data. |