CodeBeamOrg / CodeBeam.MudBlazor.Extensions

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

MudSelectExtended stays enabled when parent form is disabled #380

Closed zackasattackas closed 2 weeks ago

zackasattackas commented 1 month ago

MudSelectExtended does not call GetDisabledState() to determine if the cascaded "ParentDisabled" property is true.

There are two places that GetDisabledState() should be called: image

zackasattackas commented 1 month ago

Looking into this further I see that most, if not all, of the input components in this library do not use the GetDisabledState() method. Was this intentional?

mckaragoz commented 2 weeks ago

GetDisabledState and GetReadOnlyState added after these components creation, so they was missed to change. Changed now for SelectExtended, ComboBox and TextFieldExtended. Will apply on next release.

zackasattackas commented 2 weeks ago

Thank you!