2009 Jun 09 4:40 PM
Hello All,
The client wants to open a webdynpro window in such a way that when a user clicks on the link and the new window opens up, it does not show the address bar or the address bar is uneditable. How do i do that?
Thanks,
Amina
2009 Jun 11 7:03 AM
Hi,
if your client is calling window through method CREATE_EXTERNAL_WINDOW of interface IF_WD_WINDOW_MANAGER, then you have a importing parameter HAS_LOCATION which you can set to false.
If you are calling through portal and u have application PCD then you can call it like this
lo_portal_manager->navigate_absolute(
navigation_target = lv_path
navigation_mode = if_wd_portal_integration=>co_show_external
window_features = 'toolbar=no,resizable=yes,scrollbars=yes'
business_parameters = lv_tab_wd_param
).
lo_portal_manager is portal reference
here window _features parameter says no toolbar.
Regards
Manas Dua
2009 Jun 11 7:03 AM
Hi,
if your client is calling window through method CREATE_EXTERNAL_WINDOW of interface IF_WD_WINDOW_MANAGER, then you have a importing parameter HAS_LOCATION which you can set to false.
If you are calling through portal and u have application PCD then you can call it like this
lo_portal_manager->navigate_absolute(
navigation_target = lv_path
navigation_mode = if_wd_portal_integration=>co_show_external
window_features = 'toolbar=no,resizable=yes,scrollbars=yes'
business_parameters = lv_tab_wd_param
).
lo_portal_manager is portal reference
here window _features parameter says no toolbar.
Regards
Manas Dua
2009 Jun 11 7:29 PM
Hi Manas,
Thank you the information you provided. Unfortunately they do not want a pop-up which would be the external window call and we are not using a portal either. Any other ideas?
Hi Sai,
Either one would work. If I can hide the address bar or make it uneditable.
Thanks a lot!
2009 Jun 11 12:50 PM
Hi,
I'm a little bit confused. you don't want an address bar or your want it to be read only.
Thanks,
Sai