I am using VS 2022 not Radzen Studio yet.
I used Nuget to install Radzen components. They were working fine - a datagrid works great - some others as well. Wedsnesday I think I saw an update to Radzen and I updated (which I never do)... and now my code shows errors as if RadzenBreadCrumb type is missing. Has it been moved to another namspace or is there an issue?
Here's an example of the RadzenBreadCrumbItem type not being found (they are underlined in red and throw error:
private List breadcrumbItems = new List
{
new RadzenBreadCrumbItem() { Text = "Select Company", Path = "step1"},
new RadzenBreadCrumbItem() { Text = "Policy Grid", Path = "step2"},
new RadzenBreadCrumbItem() { Text = "Policy Location Grid", Path = "step3"},
};
The HTML markup shows breadcrumb error as well.
ERRORS IN VS 2022:
Severity | Code | Description | Project | Path | File | Line | Suppression State |
---|---|---|---|---|---|---|---|
Error (active) | CS0103 | The name 'OnBreadcrumbChange' does not exist in the current context | C:\Pages | C:\Users\jdonahue\source\repos\SUNZCertPortal\SUNZCertPortal\Pages\SelectPolicy.razor | 38 | ||
Error (active) | CS0246 | The type or namespace name 'RadzenBreadCrumbItem' could not be found (are you missing a using directive or an assembly reference?) |