cancel
Showing results for 
Search instead for 
Did you mean: 

Multi Bread Crumb

former_member188556
Active Contributor
0 Kudos

Hi,

I need to use the Bread Crumb that too with multi select.

How can u populate this bread crumb?

IPrivateAdmin.IBreadCrumbElement breadCrumbElement =
			wdContext.createBreadCrumbElement();
breadCrumbElement.setDisplayName(resourceBean.getDisplayName());
wdContext.nodeBreadCrumb().addElement(breadCrumbElement);

I used the above code, and i got it populated on each user defined action.

Now, i have a problem with the onSelect method, i want to know which link in the

multiselect, the user clicked. How to do that?

Regards

BP

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

>

> Now, i have a problem with the onSelect method, i want to know which link in the

> multiselect, the user clicked. How to do that?

>

Hi Bobu,

Try using event parameter mapping. http://help.sap.com/saphelp_nw04s/helpdata/en/60/1f1f056f057d4d962375efd3c92ed0/frameset.htm

Regards,

Anagha

Answers (1)

Answers (1)

Former Member
0 Kudos

Map the (implicit) event parameter "nodeElement" of the IWDBreadCrumb.onSelect event to some action parameter of type IBreadCrumbElement.

Armin