cancel
Showing results for 
Search instead for 
Did you mean: 

How Can i communicate between two iviews?

Former Member
0 Kudos

Hi all,

I am having two iviews.I want to conect those two in two pages.How can i do this?Can any one help me out from this?

regards

Sudeep.

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi Sudeep,

try to go thru this link.

https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/91b6ad90-0201-0010-efa3-962...

Hope it willl be helpful to u.

Regards

Anirudh

Former Member
0 Kudos

Hi Sudeep,

It depends on the technology you are using to build the iViews. Suppose you have developed a WD iView, you can use

WDPortalNavigation.navigateAbsolute()/navigateRelative()

for navigating to the other iView on the page.

For passing some data between the iViews, you can use application parameters(a paramter in the above method) from the source iView and retrieve in the target iView.

For more details you can search for these methods in the Help of of your NW IDE.

Thanks and regards

RK.

Former Member
0 Kudos

Hi ,

Try this

WDPortalNavigation.navigateAbsolute("ROLES:"+iview,WDPortalNavigationMode.SHOW_INPLACE,(String) null, (String) null, WDPortalNavigationHistoryMode.NO_DUPLICATIONS,(String) null,(String) null,"Param=Paramvalue");

"ROLES:"+iview=Iview Path

"Param=Paramvalue"=Parameter and its value

Youcan receive the value as

String parmvalue=WDWebContextAdapter.getWebContextAdapter().getRequestParameter("Param");

Kind Regards

Mukesh

Former Member
0 Kudos

Ignore my suggestion. I read it as two views. Other replies are more useful.

Regards,

Subramanian V.

Message was edited by: Subramanian Venkateswaran

suresh_krishnamoorthy
Active Contributor
0 Kudos