Code with Html Helper:
@(Html.Kendo().TabStrip()
.Name("tabstrip")
.Scrollable(false)
But I don't know how to do it with Tag Helper. Any ideas?
scrollable="false" not working
<kendo-tabstrip name="tabstrip" tab-position="top" scrollable="false">
<popup-animation>
<open effects="fade:in" />
</popup-animation>
<items>
<tabstrip-item text="First Tab">
<content>
</content>
</tabstrip-item>
</items>
</kendo-tabstrip>
There is a child tag
<scrollable />that should be used: