Answer:
We can show a clear icon after lost the focus in Blazor SfAutoComplete by adding the “e-static-clear” class to the component using the CssClass property.
@ref="autoComplete" TValue="string" CssClass="e-static-clear" TItem="Countries" Query="RemoteDataQuery" EnableVirtualization="true" PopupHeight="230px" Placeholder="Select a name" DataSource="Country">
Text="Name" Value="Name">
TValue="string" TItem="Countries" Filtering="OnFiltering">
|