CodeBeamOrg / CodeBeam.MudBlazor.Extensions

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

MudComboBox - when Editable set to "true", type ahead input is considered a password by chrome. #295

Closed Stepos36 closed 11 months ago

Stepos36 commented 11 months ago

I noticed this weird behavior after adding the component to my page - see screenshot image

I looked into this StackOverflow and it says you need an id on input for it to not be considered a password by Chrome.

I previously localized MudComboBox to make it dynamic (server side rendering), so I was able to tap into the component locally and debug it. All you need to do to resolve this is add a unique Id to the MudTextFieldExtended (@ref="_searchbox") in MudComboBox.razor like in below screenshot. image