Skip to content

Merge dimodi-patch-1-tabstrip-scrollable-3167 into production #3170

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 12, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 15 additions & 2 deletions components/tabstrip/scrollable-tabs.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ The following example demonstrates this option in action.
````RAZOR
<TelerikTabStrip Scrollable="true"
ScrollButtonsVisibility="@TabStripScrollButtonsVisibility.Auto"
Width="100%">
Width="30vw">
<TabStripTab Title="First">
First tab content.
</TabStripTab>
Expand All @@ -68,6 +68,12 @@ The following example demonstrates this option in action.
<TabStripTab Title="Third">
Third tab content.
</TabStripTab>
<TabStripTab Title="Fourth">
Fourth tab content.
</TabStripTab>
<TabStripTab Title="Fifth">
Fifth tab content.
</TabStripTab>
</TelerikTabStrip>
````

Expand All @@ -83,7 +89,8 @@ The following example demonstrates this option in action.

````RAZOR
<TelerikTabStrip Scrollable="true"
ScrollButtonsVisibility="@TabStripScrollButtonsPosition.Start">
ScrollButtonsPosition="@TabStripScrollButtonsPosition.Start"
Width="280px">
<TabStripTab Title="First">
First tab content.
</TabStripTab>
Expand All @@ -93,6 +100,12 @@ The following example demonstrates this option in action.
<TabStripTab Title="Third">
Third tab content.
</TabStripTab>
<TabStripTab Title="Fourth">
Fourth tab content.
</TabStripTab>
<TabStripTab Title="Fifth">
Fifth tab content.
</TabStripTab>
</TelerikTabStrip>
````

Expand Down