Forum Discussion
DaveDigisynth
May 03, 2024Copper Contributor
Blazor .Net 8 : Get a referenece to the actual instance of a child component
Given the following markup: <Wizard Title="Add workplace" OnSave="PersistWizardData"> <WizardStep Title="Checklist"> <AddWorkplaceWizardStepChecklist /> </WizardStep> <WizardStep Title="Lo...
DaveDigisynth
May 07, 2024Copper Contributor
Found a solution. Adding @ref to bind the dynamic component to a property in the code behind allows me to access the Instance property to get to the underlying type.