Tabbed Application Mode
This add-on allows you to open views in separate tabs within the main view, allowing users to simultaneously access multiple views and switch between them easily. It also supports opening multiple views within the same tab, creating a view stack represented by breadcrumbs.

The Tabbed Application Mode add-on is currently in the experimental state and can change significantly in the next Jmix release. |
Installation
For automatic installation, use a dedicated project template:

For manual installation:
-
Add the following dependency to your
build.gradle
:implementation 'io.jmix.tabbedmode:jmix-tabbedmode-flowui-starter'
-
Change base class of the
MainView.java
fromStandardMainView
toStandardTabbedModeMainView
.import io.jmix.tabbedmode.app.main.StandardTabbedModeMainView; @Route("") @ViewController(id = "MainView") @ViewDescriptor(path = "main-view.xml") public class MainView extends StandardTabbedModeMainView { }
-
In the
main-view.xml
, wrapinitialLayout
intoworkArea
:<workArea id="workArea" classNames="jmix-work-area"> <initialLayout width="100%" height="100%"/> </workArea>