CodeBeamOrg / CodeBeam.MudBlazor.Extensions

Useful third party extension components for MudBlazor, from the contributors.
https://mudextensions.codebeam.org/
MIT License
428 stars 68 forks source link

MudSelectExtended Event Callback Issues (6.92) #435

Open mistahoward opened 3 months ago

mistahoward commented 3 months ago

When providing a method to the OnBlur parameter of a mud select extended, it never seems to be called: OnBlur="@(() => BlurTesting())"

        private void BlurTesting() {
            var test = "";
            Console.WriteLine("testing");
        }

This line is never invoked nor hit on a breakpoint while debugging. I tried several variation's of the parameter (based on MudBlazor's docs) including "OnBlurred", "OnBlurAsync", "OnBlurredAsync", & "OnFocusOut", which no luck with any of them.

I had the same issue with OnFocus.

mckaragoz commented 2 months ago

Does it same for MudSelect also or is it only about the extended component?