CodeBeamOrg / CodeBeam.MudBlazor.Extensions

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

Modify Buttons for Stepper #441

Open afnan opened 1 month ago

afnan commented 1 month ago

I am after the ability to modify the text on the buttons for steps. Is this something that is possible?

for example:

 <MudStepExtended IsResultStep="true" NextButtonText="Checkout"  Icon="@Icons.Material.Filled.Money" Title="Checkout" Order="3">
     <ChildContent>
         @if (_stepper?.GetActiveIndex() == 2)
         {
             <Checkout />
         }
     </ChildContent>     
 </MudStepExtended>

If thats too much then perhaps possibility to disable next button and display custom buttons?

mckaragoz commented 1 month ago

You can hide each button and create your own ones in ActionContent.

I didn't understand which text, you mean title on the top of each step icon?