cancel
Showing results for 
Search instead for 
Did you mean: 

navigation into the portal and param NavMode=3

marie-pierre_mela
Product and Topic Expert
Product and Topic Expert
0 Kudos
232

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,

Accepted Solutions (0)

Answers (4)

Answers (4)

marie-pierre_mela
Product and Topic Expert
Product and Topic Expert
0 Kudos

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

Former Member
0 Kudos

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.

marie-pierre_mela
Product and Topic Expert
Product and Topic Expert
0 Kudos

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.

Former Member
0 Kudos

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