Dynamically adding tab items nolonger works after version 2.15.11

Hi,

I have a project with a RadzenTabs control in the main page that I dynamically add tab items to show views with different information when required.

I have noticed that since version 2.15.12 the RadzenTabs.AddTab method no longer adds or displays these dynamic RadzenTabsItems.

I have added an example project to demonstrate this issue. If you change the version of Radzen.Blazor between 2.15.11 and 2.15.12-17 you can see the difference.

BlazorApp1.zip (837.4 KB)

Regards
Nick

You shouldn't use the AddTab method to add tabs. Use a declarative approach instead:

<RadzenTabs>
<Tabs>
  @foreach(var item in items)
  {
      <RadzenTabsItem Text=@item.Text>
  }
</Tabs>
</RadzenTabs>

@* Manipulate the items property (Add/Remove) to update the tabs *@