Is there a possibilty to create a certain number of windows in one screen. Each window has the same layout but different content. I would like to include a filter so that I can choose which window I would like to see. Right now I have a table with four entries. For each entry one window is generated, but that looks quite messy.
final int i = this.table.size();
for (int h = 1; h <= i; h++) {
final Window win = new Window("Window" + h, new SecondView());
this.getParent().getUI().addWindow(win);
}
Edit: The Starting point is as described. I have a table with content from a database. In this table i can select multiple rows. For each row a pre-defined window should open. In this window i have textFields, that should contain the values of the matching attributes from the selected row. In order to get a better structure i want to choose which window should be visbile.