cancel
Showing results for 
Search instead for 
Did you mean: 

Using a view as left link

Former Member
0 Kudos

Hi All

I want to develop a left link which will appear in every view of the application and will have the links by clicking which right view can be changed like our e-mail sites where we click on folder name and right part gets changed.

For this functionality I have created a view for left link and added it to a view set so that i don't need to add all those links to each and every view again and again but i have a problem like when i click on the link how to change the lift link from one view to another.

e.g.

i have links called inbox and spam in left link and currently showing inbox in right view now when i click on spam automatically right view should be get changed to spam folder.

how can i achieve this functionality. Is it possible through view set or if any other way to implement this?

Thanks in advance

Prasanna

Accepted Solutions (0)

Answers (3)

Answers (3)

former_member186016
Active Contributor
0 Kudos

Hi Prasanna,

Create a Viewset having two regions left and right.

In left view have all the link and attach some actions to them.

Like

navigateToInbox()

navigateToSpan()

In the actions simply fire an outbound plug to corresponding view that is embeded in right side of viewset.

On firing of view corresponding view will be displayed in the right region.

Regards,

Ashwani

Former Member
0 Kudos

1.Create outboundPlug from LEFT view to spam view.

2. OnClick of Spam link fire the plug

ex wdThis.wdfirePlugtoSpamView();

In the same way crate outboundPlug from LEFT view to Inbox view .

Regards, Anilkumar

Former Member
0 Kudos

Hi Prasanna,

I think this can achieved by simple view nagivation.

Create outboundPlug and fire the plug in your code to navigate to the spam view.

Regards, Anilkumar