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

MudStepper - No way to Uncomplete a step #364

Closed adversive closed 1 month ago

adversive commented 1 month ago

I'm sure that I'm missing something here, but I can't see any way to uncomplete a step after calling CompleteStep(stepIndex).

When going back in steps, I want to uncomplete all steps that come after.

mckaragoz commented 1 month ago

There is a Reset method in MudStepper to set all step status to continued. With the latest release 6.9.2 we also added SetStepStatus method that now you can set step status with step index programmatically.

adversive commented 1 month ago

Thanks, using SetStepStatus is sufficient.