Add-on Directory

← Back

Enhanced Tabs Add-on

Enhanced Tabs Add-on for Vaadin Flow

Author

Contributors

Rating

Popularity

200+

Enhanced Tabs allows that tabs that don't fit into the current width collapse automatically into an overflow menu at the end.

Enhanced Tabs is compatible with Vaadin 14, 22, 23 and 24.

Found a bug or have a suggestion? Report it on GitHub

For bug reports, feature suggestions, or questions, please open an issue on GitHub. This makes it easier for us to track and respond efficiently, ensuring you get the best possible support. Your input helps us improve—thank you!

Sample code

EnhancedTabs tabs = new EnhancedTabs();
tabs.add(new Tab("first tab "));
tabs.addSelectedChangeListener(ev -> {
    Notification.show("Tab selected: " + ev.getSelectedTab().getElement().getText());	
});

Compatibility

(Loading compatibility data...)

Was this helpful? Need more help?
Leave a comment or a question below. You can also join the chat on Discord or ask questions on StackOverflow.

Version

Bug fixes:

  • Add theme attribute to style (#24)
Released
2025-02-24
Maturity
TESTED
License
Apache License 2.0

Compatibility

Framework
Vaadin 14
Vaadin 23
Vaadin 24
Vaadin 22 in 1.1.0
Browser
N/A

Enhanced Tabs Add-on - Vaadin Add-on Directory

Enhanced Tabs Add-on for Vaadin Flow Enhanced Tabs Add-on - Vaadin Add-on Directory
Enhanced Tabs allows that tabs that don't fit into the current width collapse automatically into an overflow menu at the end. Enhanced Tabs is compatible with Vaadin 14, 22, 23 and 24. #### Found a bug or have a suggestion? Report it on GitHub For bug reports, feature suggestions, or questions, please open an issue on [GitHub](https://github.com/FlowingCode/EnhancedTabs/issues). This makes it easier for us to track and respond efficiently, ensuring you get the best possible support. Your input helps us improve—thank you!
View on GitHub
Online Demo

Enhanced Tabs Add-on version 1.0.0
Initial release. Compatible with Vaadin 14, 22, 23 and 24.

Enhanced Tabs Add-on version 1.1.0
#### Bug fixes: * Update styles so that the border covers all the available width ([#5](https://github.com/FlowingCode/EnhancedTabs/issues/5)) * Add workaround for RouterLinks ([#7](https://github.com/FlowingCode/EnhancedTabs/issues/7))

Enhanced Tabs Add-on version 1.2.0
#### New features: * Move selected tab to the main part of the menu-bar ([#13](https://github.com/FlowingCode/EnhancedTabs/issues/13)) * Add getTabs method #### Bug fixes: * Prevent duplicate initialization of connector * Allow tab selection from overflow on entire tab area ([#17](https://github.com/FlowingCode/EnhancedTabs/issues/17)) * Ensure selected tab from overflow is correctly displayed ([#16](https://github.com/FlowingCode/EnhancedTabs/issues/16)) * Fix off-by-one error in overflow handling

Enhanced Tabs Add-on version 1.2.1
#### Bug fixes: * Add theme attribute to style ([#24](https://github.com/FlowingCode/EnhancedTabs/issues/24))

Online