What steps will reproduce the problem?
1. Browse to a jcr:content node
2. Click on the jcr:data property in the property tab to download
What is the expected output? What do you see instead?
Expect content opened in new window, rather than the current. As the code calls
Window.Location.replace the current window containing the JR Explorer is
replaced (lost). To go back to where you were you have to reload the whole
explorer
The fix would be to replace the "Window.Location.replace" with "Window.open":
com.google.gwt.user.client.Window.open(BINARY_SERVLET_PATH + selectedNodePath +
"/" + "jcr:data"
+ "&rmiUrl=" + rmiUrlTxt.getValue().toString() +
"&workSpace=" + workspaceTxt.getValue().toString() + "&mimeType=" + mimeType,
"_blank",
"toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes,status=no");
What version of the product are you using? On what operating system?
1.1
XP SP3
Chrome 11 and FF3
Please provide any additional information below.
- Patch attached
Original issue reported on code.google.com by carl.pri...@gmail.com on 6 May 2011 at 12:28
Original issue reported on code.google.com by
carl.pri...@gmail.com
on 6 May 2011 at 12:28Attachments: