blob: 310df1c0f0f5b6d2ad96076d94330c62bae214f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
---
title: Creating Multi Tab Applications
order: 84
layout: page
---
[[creating-multi-tab-applications]]
Creating multi-tab applications
-------------------------------
Every new request to the server gets a new session and UI instance.
Having the application open in separate tabs or windows means that the
instances are totally separate from each others, and thus won't conflict
and cause any out of sync or similar issues.
Opening the new tab will open the application into it's start page. Use
URI fragments if you want to open a specific view into the secondary
tab. You can read the URI fragments in the `UI.init()` and decide if you
want to show the main view or a specialized view:
[source,java]
....
public void init(VaadinRequest request) {
String person = request.getParameter("editPerson");
if (person == null) {
setContent(new MainView());
} else {
setContent(new EditPersonView(person));
}
}
....
More examples on URI fragments and parameters can be found at:
* link:UsingURIFragments.asciidoc[Using URI fragments]
|