The AutoComplete supports wrapping nested elements into a group based on different categories. The category of each list item can be mapped through the GroupBy field in the data table. The group header is displayed as both inline and fixed headers. The fixed group header content is updated dynamically on scrolling the suggestion list with its category value.
We are using Blazore.Tyoehead to create Autocomplete textbox. Here are some of the key features of the component.
The primary feature of the component is in the way it handles searching. You provide the component with a search method which it will call with the search text entered.
Developers are able to provide templates for the following things.
- Selected result
- Search result
- Not found result
Here are some of the steps to create Autocomplete textbox
Step 1
Create a new C# Blazor server-side application project. Select Blazor App from the template and click the Next button.

Step 2
Now, the project configuration window appears. Click Create button to create a new project with the default project configuration.

Step 3
Choose Blazor Server App from the dashboard and click Create button to create a new Blazor server-side application.
Step 4
Install the Blazored.Typeahead NuGet package as a reference to your Blazor application from Nuget.org.
Step 5
Create a new Component file named Checkbox under Data folder.



GowthamPosted Feb 14, 2023, 7:02 AM
Hi, Syncfusion Blazor AutoComplete Easily integrate with other controls such as the DataGrid for modern web and mobile applications.https://www.syncfusion.com/blazor-components/blazor-autocomplete
Sean NewmanPosted Feb 25, 2022, 9:43 AM
So every keypress goes back to the server?
Sean NewmanPosted Feb 25, 2022, 9:42 AM
This is running on the server right?
Sean FranklinPosted Dec 31, 2020, 12:51 AM
Hey Payal, nice article. Great quick reference for setting up autocomplete.