Ticket #2117 (closed defect: fixed)
It should be possible to create new windows on fly to new URL:s
| Reported by: | Joonas Lehtinen | Owned by: | Joonas Lehtinen |
|---|---|---|---|
| Priority: | major | Milestone: | User Interface Library 5.2.10 |
| Component: | gwt-adapter-client | Version: | 5.2.8 |
| Keywords: | Cc: | ||
| Known Issue description: | |||
| Hours estimate: | Deadline (dd.mm.yyyy): | ||
| Known Issue version (since): | Known Issue title: | ||
| Hours done: | Depends to: | ||
| Affects documentation: | no | ||
| Known Issue workaround: | |||
| Affects release notes: | no | Contract: | |
Description (last modified by Matti Tahvonen) (diff)
Toolkit must support following case:
Each time the applications url is accessed a new window is drawn. New windows (if not the first one aka main window) are forwarded to an unique uri so that reloads are possible.
Test case in trunk in tests.tickets package.
Old description:
~Try out the #1970 test with the following modification: ~
public Window getWindow(String name) {
// If we already have the requested window, use it
Window w = super.getWindow(name);
if (w == null) {
// If no window found, create it
w = createExtraWindow(name);
w.open(new ExternalResource(w.getURL()));
}
return w;
}
~This results to infinite loop instead of changing the url. ~
Change History
Note: See
TracTickets for help on using
tickets.
