All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Hello, Is it possible to define a view (razor-class) as the content of a TabStripTab, as is possible in the Telerik WPF TabItem? Something like this:
<Tabcontrol>
<TabItem>
<TabItem.Content>
<view:AnotherProjectView x:Name="AnotherProjectView "/>
</TabItem.Content>
</TabItem>
</Tabcontrol>
Got it!
<TelerikTabStrip TabPosition="Telerik.Blazor.TabPosition.Top" @ref="mainTabStrip"> <TabStripTab Title="MyTab"> <AnotherProjectView ></AnotherProjectView > </TabStripTab> </TelerikTabStrip>