on 2007 Dec 07 3:39 PM
Hi,
I'm using navigation this way:
,, WDPortalNavigation.navigateAbsolute(obnUrl,
,, WDPortalNavigationMode.SHOW_INPLACE,
,, null,
,, null,
,, WDPortalNavigationHistoryMode.NO_HISTORY,
,, null,
,, null,
,, obnMetaData.getOBNUrlParametersString(),
,, null,
,, false,
,, true);
and would like to know if it is possible to have &NavMode=3 into the
built URL? And if so how ?
Thanks and regards,
Request clarification before answering.
Thanks Satyajit, but this is not working.
I've spoken with someone in the OBN team and this isn't planed to be supported, the window mode is defined by the 2nd parameter. So seems there is no way to open with WDPortalNavigationMode.SHOW_INPLACE & SHOW_HEADERLESS_PORTAL
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Off the top of my head:
WDPortalNavigation.navigateAbsolute(obnUrl,
WDPortalNavigationMode.SHOW_INPLACE,
null,
null,
WDPortalNavigationHistoryMode.NO_HISTORY,
null,
null,
obnMetaData.getOBNUrlParametersString() + "&NavMode=3",
null,
false,
true);
Regards,
Satyajit.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Ayyapparaj.
I believe in this case there is no way to stay in the same window as I want to do using WDPortalNavigationMode.SHOW_INPLACE.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
public static void navigateAbsolute(
String navigationTarget,
WDPortalNavigationMode mode,
String windowFeatures,
String windowName,
WDPortalNavigationHistoryMode historyMode,
String targetTitle,
String contextUrl,
String businessParameters,
String launcherParameters,
boolean postParameters,
boolean useSAPLauncher)
In the above method you can see the <b>WDPortalNavigationMode mode</b> use the following
<b>WDPortalNavigationMode.SHOW_HEADERLESS_PORTAL</b>
Regards
Ayyapparaj
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
89 | |
11 | |
9 | |
8 | |
7 | |
5 | |
4 | |
4 | |
4 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.