I am new to using the UI for Blazor products. I added the code from https://www.telerik.com/blazor-ui/documentation/components/tabstrip/overview
The control renders but I am not able to select the 3d tab, the control remains on the first tab. Any help on why would be appreciated.
Here is the code from the razor page.
@page "/Reports/report-main"@using Telerik.Reporting;
@using Telerik.Blazor.Components;
<h3>Report Main</h3>
<!-- Tabs -->
<div>
<TelerikTabStrip>
<TabStripTab Title="First">
First tab content.
</TabStripTab>
<TabStripTab Title="Second" Disabled="true">
Second tab content. This tab is disabled and you cannot select it.
</TabStripTab>
<TabStripTab Title="Third">
Third tab content.
</TabStripTab>
</TelerikTabStrip>
</div>
@code {
}
@Ken - make sure that the TabStrip is placed in an interactive .razor file. If the problem persists, send me your test app.