This repository has been archived by the owner on Feb 18, 2023. It is now read-only.
Setting MuddyWizard Properties #4
hasselboxster
started this conversation in
General
Replies: 1 comment 1 reply
-
i was able to make some progress, not sure if this is the event you would recommend attaching to - but does work... protected override async Task OnAfterRenderAsync(bool firstRender) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
First, thanks for putting this together. I see in your docs and example all the properties clearly spelled out. In the WASM sample, you have the container with the switches mechanism for all the properties. I was trying to set something in the code itself ... for example with the "ShowChips" property like:
<MuddyWizard @ref="_wiz" ShowChips="true"
DisableNext="NextDisabled"
IndexChanged="OnIndexChanged"
WizardCancelled="OnWizardCancelled"
WizardFinished="OnWizardFinished">
But that didnt work.
Also tried within the code, in various events:
_wiz.ShowChips = true;
But that didnt work, either... I am (obviously?!) new to Blazor so this is likely just a generic misunderstanding on my part. Haven't been able to figure it out from searches, so I reached out here.
Thanks for any assistance.
Beta Was this translation helpful? Give feedback.
All reactions