Hi,
Whenever I insert a step component, I can't reference it any the code since there is no "Name" property in the component (.razor). There is however a name defined in the Radzen UI (ie: StepProcess), but this does not replicate to the code.
I need this to be able to manage some properties using code.
Thanks for your help.
Hi @BillyBob,
Radzen does not generate references for all components (only for a few ones for which references are mandatory). Also you should be aware that setting component properties from code isn't considered a best practice in Blazor and in most cases will just not work. The compiler even produces a warning in such cases. Only getting property values and invoking methods is supported. The general practice is to set the properties of the components to expressions.