Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

5
Votes

using the example from the docs 

https://blazor.syncfusion.com/documentation/tabs/how-to/add-remove-tab-items#using-conditional-rendering is rendering the tabs well, but the selected item is not updated correctly, when removing it keeps the last index removed.


@page "/counter"

@using Syncfusion.Blazor.Navigations
@using Syncfusion.Blazor.Buttons

<SfButton @onclick="AddItemClick" Content="Add Item"></SfButton>
<SfButton @onclick="RemoveItemClick" Content="Remove Item"></SfButton>
<br />
<br />

@_selectedItem

<SfTab @bind-SelectedItem="@_selectedItem">
<TabItems>
@foreach (TabData Item in TabItems)
{
<TabItem>
<HeaderTemplate>
<div>@(Item.Header)</div>
</HeaderTemplate>
<ContentTemplate>
<div>@(Item.Content)</div>
</ContentTemplate>
</TabItem>
}
</TabItems>
</SfTab>


@code {

private int _selectedItem = 0;

List<TabData> TabItems = new List<TabData>()
{
new TabData
{
Header = "ASP.NET",
Content = "Microsoft ASP.NET is a set of technologies in the Microsoft .NET Framework for building Web applications and XML Web services. ASP.NET pages execute on the server and generate markup such as HTML, WML, or XML that is sent to a desktop or mobile browser. ASP.NET pages use a compiled,event-driven programming model that improves performance and enables the separation of application logic and user interface."
},
new TabData
{
Header = "ASP.NET MVC",
Content = "The Model-View-Controller (MVC) architectural pattern separates an application into three main components: the model, the view, and the controller. The ASP.NET MVC framework provides an alternative to the ASP.NET Web Forms pattern for creating Web applications. The ASP.NET MVC framework is a lightweight, highly testable presentation framework that (as with Web Forms-based applications) is integrated with existing ASP.NET features, such as master pages and membership-based authentication."
},
new TabData
{
Header = "ASP.NET Razor",
Content = "Razor is an ASP.NET programming syntax used to create dynamic web pages with the C# or Visual Basic .NET programming languages. Razor was in development in June 2010 and was released for Microsoft Visual Studio 2010 in January 2011. Razor is a simple-syntax view engine and was released as part of MVC 3 and the WebMatrix tool set. Side Code content"
}
};
public class TabData
{
public string Header { get; set; }
public string Content { get; set; }
}
void AddItemClick()
{
TabItems.Add(new TabData
{
Header = "JavaScript",
Content = "JavaScript (JS) is an interpreted computer programming language.It was originally implemented as part of web browsers so that client-side scripts could interact with the user, control the browser, communicate asynchronously, and alter the document content that was displayed."
});
StateHasChanged();
}
void RemoveItemClick()
{
if (TabItems.Count > 0)
{
TabItems.RemoveAt(0);
}
}
}