I want to open a File Upload dialog from a Button (well actually a Link) on an XPage. Does anyone know of a way of opening the new XPage into a new Window please? I can’t see a “target” property or anything similar.
Thanks. Jerry.
I want to open a File Upload dialog from a Button (well actually a Link) on an XPage. Does anyone know of a way of opening the new XPage into a new Window please? I can’t see a “target” property or anything similar.
Thanks. Jerry.
Subject: open view link in new window
Hi guys,
is it possible to open links of a view column in a new window? (without clientside-js manipulation)
Thank you
Subject: XPages - is it possible to open an XPage in new Window?
For a link, you can specify the target property by looking under All Properties, in the Basics section. I have done that a number of times. When I ad that setting though, I need to remove the “/” from the value property for the link.
My code is:
<xp:link escape=“true” text=“Link” id=“link1” value=“Test.xsp”></xp:link>
I can’t see the same option for the Open Page simple action, though I’m sure there’s a way.
Regards
Paul
Subject: Now how do I close the new WindowTab ?!?
Nothings ever easy! There’s nothing obvious in the list of Simple Actions.
Any ideas welcomed. Thanks again.
Subject: Re Closing window
I’d probably use clien-side javascript, window.close()
Subject: Thanks
You’re a star again Paul.