Unplanned
Last Updated: 04 Feb 2026 12:59 by Martin
Martin
Created on: 04 Feb 2026 12:59
Category: TabStrip
Type: Bug Report
1
TabStrip selects first tab with uninitialized ActiveTabId binding

When ActiveTabId is null, the TabStrip selects the first tab automatically, but does not render its content.

<TelerikTabStrip @bind-ActiveTabId="@TabStripActiveTabId">
    <TabStripTab Title="First" Id="t1">
        First tab content.
    </TabStripTab>
    <TabStripTab Title="Second" Id="t2">
        Second tab content.
    </TabStripTab>
    <TabStripTab Title="Third" Id="t3">
        Third tab content.
    </TabStripTab>
</TelerikTabStrip>

@code {
    private string? TabStripActiveTabId { get; set; }
}

0 comments