Feature Request : Mat-Tab select by name.
See original GitHub issueBug, feature request, or proposal:
Feature Request for material tabs
What is the expected behavior?
The ability to select a tab by its name, like this;
<mat-tab-group [selectedTab]="profile" >
<mat-tab label="Profile" name="profile">
What is the current behavior?
<mat-tab-group [selectedIndex]="4" >
What is the use-case or motivation for changing an existing behavior?
I am using the material tabs in a responsive app. When the app is in mobile size I display 5 tabs, when the app is in desktop size I display 3 tabs. The reason is since there is more room on the desktop I combine the content and show less tabs.
The issue is when I try to link to a specific tab via a URL. I would use a query parameter like ?tabindex=2. However since my tab index changes depending on the application size, the link will work in one case and not the other. So it would be useful to link to the tab by name like this, ?tab=profile. This way I can pass the name to the component and it can figure out the active tab regardless of the index number.
Issue Analytics
- State:
- Created 5 years ago
- Reactions:13
- Comments:7 (3 by maintainers)
Top GitHub Comments
Is there any updates to this feature request?
This is an important feature. The index of dynamically added tabs by other users means nothing, the name is the appropriate way of selecting a specific tag.