I have a web database that is using a frameset. On the left is a page with embedded outline. On the right, main frame, I have a form with an embedded view, using the java applet.
In the embedded view, if I open a document by double clicking on it, it opens in the same browser window, but it takes the whole window, (it looks like it does not use the frames).
Back on the form with the embedded view, I have a @Command([Compose]; “”; “Survey Response”) button. When clicked, it opens a new document, but it only displays in the right frame. I want it to have the same behavior as when I open an existing one … to take up the whole browser window but not a new window.
I tried using @URLOpen(“http://…/Survey Response?CreateDocument”), but that doesn’t work. I tried to create a new frameset with one frame visible and force the composed doc into that, but no good…
@SetTargetFrame(“single”);
@Command([Compose]; “”; “Survey Response”)
This opens a new browser window. How can I make the composed doc display in the current, whole browser window?
tanks!!