Hi Rick,
What you would normally see in the feedback portal is some workaround. When a feature/fix becomes official, this type of workaround is likely not needed anymore. With fixes, likely you will see no changes, simply "it will work", but with features, you can find information in the documentation. For example, in this case, the label template in the tabstrip is documented here: https://docs.telerik.com/blazor-ui/components/tabstrip/header-template.
Regards,
Marin Bratanov
Progress Telerik
Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.
This item is gaining some traction and while it is not planned yet, something like this can be kind of a workaround (note: it's hacky, causes invalid HTML and will require tweaks, but it may suffice for a couple of simple tasks even though it is not an officially supported solution):
@* Note: This is a HACKY workaround that results in invalid HTML and we can't be sure it won't cause issues *@
<TelerikTabStrip>
<TabStripTab Title="Sofia">
sofia content
</TabStripTab>
<TabStripTab Title="London">
london content
</TabStripTab>
<li class="k-item my-custom-tab">
<TabStripTab Title="Lorem ipsum">
lorem ipsum dolor sit amet
</TabStripTab>
<span class="my-badge">9</span>
</li>
</TelerikTabStrip>
<style>
.my-custom-tab li.k-item[role=tab] {
padding-right: 2em;
}
.my-custom-tab .my-badge {
position: absolute;
right: 10px;
top: 5px;
z-index: 2;
border-radius: 50%;
background: red;
color: white;
width: 1.5em;
height: 1.5em;
display: inline-block;
text-align: center;
vertical-align: baseline;
font-weight: bold;
}
</style>
Regards,
Marin Bratanov
Progress Telerik