No more iframe-UI in CE 7.1?
Hi there
With displace I found out, that in the new netweaver ce - java webdynpro environment, it isn't possible at all to make
iframe-UI!
As you can see in this help-page the iframe API sems to become deprecated.
[http://help.sap.com/saphelp_nwce10/helpdata/en/e9/7652a84fada444bd11ca73670ce7dc/frameset.htm|http://help.sap.com/saphelp_nwce10/helpdata/en/e9/7652a84fada444bd11ca73670ce7dc/frameset.htm]
Till now i didn't found any other solution for integrating html or other pages into
my new java webdynpro!
-
Except generating it with the deprecated iwdiframe element into my wddomodify-method... (like below)
IWDIFrame iframe = (IWDIFrame) view.createElement(IWDIFrame.class); IWDTransparentContainer cont = (IWDTransparentContainer) view.getElement("RootElement"); iframe.setBorder(false); iframe.setScrollingMode(WDScrollingMode.NONE); iframe.setSource("http://www.sdn.sap.com"); cont.addChild(iframe);
Does anyone now other solutions?
Thanks in advance
Regards
Marco