I upgraded Radzen Blazor to 0.66 to be able to use RadzenDropDownGrid. After installing the update, the current RadzenDropDown does not work anymore.
If the dropdown is under ChildContent RadzenTemplateForm, it will have this error:
InvalidOperationException: Object of type 'Radzen.Blazor.RadzenDropDown' does not have a property matching the name 'ChildContent'.
If its outside, the dropdown will not bind contents and when clicked, will have this error on browser log console:
Uncaught ReferenceError: Radzen is not defined
at HTMLLabelElement.onclick (:2:1)
create-billing-cycle:1 Uncaught ReferenceError: Radzen is not defined
at HTMLDivElement.onfocusout
So I fixed the second issue with adding the embedded script which was previously referring to a file path. The first issue still persist. From your sample, is that a RadzenTemplateForm? The issue I am having is on Blazor, we got this error if Dropdown or DropdownDataGrid is inside ChildCOntent from RadzenCard i.e.
FYI..I found the issue for this. Basically its because another radzen control is within my radzendropbox i.e <RadzenDropDown> <RadzenTextBox> </RadzenDropDown>