cancel
Showing results for 
Search instead for 
Did you mean: 

External Window

Former Member
0 Kudos

Hi All,

I am working on popup windows and I am able to do it successfully. As look and feel is not that good, I want to change this popup window to external window. I know how to external window but I need to know how we can change existing popup to external window.

How can I do it? Any Suggestions?

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi,

<b>Check the following applications,</b>

https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webdynpro/wd%20jav...

https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/061f0ca3-0c01-0010-67a6-ecc...

<b>Creating External Window,</b>

IWDWindow window=wdComponentAPI.getWindowManager().

.createExternalWindow("http://www.google.co.in","Google-search for an email address",false);

window.setWindowSize(100,100);

window.open();

former_member751941
Active Contributor
0 Kudos
Former Member
0 Kudos

In simple word - you can not change the normal pop up window to an external window. There is no way for the same. Pop up window will always come up without window header and other features.

However if its really important to have the pop up window like an external one then you can have two components. Make the pop up window as part of the second component and from first one put the URL of the second component while opening an external window. But in this case there are a lot of difficulties in passing the data - as you have to now work upon inter application communication

Former Member
0 Kudos

Thanks for response. I will appreciate if any one can provide me any tutorials or any examples in forum so that I can create new external window and map elements from window to external window.