I'm having some trouble with the TelerikTabStrip component. The following snippet should reproduce my issue:
<TelerikTabStrip @bind-ActiveTabIndex="@activeTabIdx">
@{
foreach (var tab in Tabs)
{
<TabStripTab Title=@tab.Key></TabStripTab>
}
}
</TelerikTabStrip>
@code {
public Dictionary<string, string> Tabs { get; set; }
public int activeTabIdx { get; set; } = 0;
protected override void OnInitialized()
{
Tabs = new Dictionary<string, string>();
Tabs.Add("1", "1");
Tabs.Add("2", "2");
Tabs.Add("3", "3");
Tabs.Add("4", "4");
}
protected override void OnParametersSet()
{
}
Currently, whenever I change a tab, although activeTabIdx is updated, the previous tab remains highlighted along with the currently selected one and so on, i.e, the previous tab highlight does not disappear indicating it had beeen deselected. Has anyone incurred to a similar problem?
Thank you