Hi guys, i made a Swing Desktop application, and all gui it’s based on 2 levels windows (JDialog), like this
- MainFrame (Frame of my application)
- ModuleJDialog (Module GUI - JDialog)
- JDialog (modal JDialog for user data selection)
- ModuleJDialog (Module GUI - JDialog)
I wanna make a WEB version very similar of my application and vaading is perfect for this, but, it’s not possible 2 levels window support.
Digging on the source code:
http://dev.vaadin.com/browser/releases/6.3.2/src/com/vaadin/ui/Window.java#L1228
I see the Exception:
throw new IllegalArgumentException("You can only add windows inside application-level windows.");
So, i try to setParent(null); but this it’s not working…
It’s possible add next level support ?
PD: I new user of vaading…
Thanks…