#11398·MudBlazor

MudAutocomplete: Allow to set busy state from external process

Author: leonardoporroCreated May 24, 2025Updated Sep 17, 2026
Labelsenhancementgood first issue

Feature request type

Enhance component

Component name

MudAutocomplete

Is your feature request related to a problem?

I would like to make the progress loading icon visible just like MudTable.Loading property.

Describe the solution you'd like

Adding a Loading property so the MudProgressCircular is shown when searchfunc is executed or when I set it externally.

add: bool Loading { get; set; } update line 515: private bool IsLoading => _currentSearchTask is { IsCompleted: false }; would be private bool IsLoading => Loading || _currentSearchTask is { IsCompleted: false };

Have you seen this feature anywhere else?

Yes, in MudTable.

Describe alternatives you've considered

Another alternative would be to make IsLoading virtual

Pull Request

  • I would like to do a Pull Request

Code of Conduct

  • I agree to follow this project's Code of Conduct