cancel
Showing results for 
Search instead for 
Did you mean: 

Adding Breadcrumb in NewsBrowser

Former Member
0 Kudos

Hello,

we need to customize a default Layout Set (NewsBrowser) in way to have a breadcrumb in it.

This customization would be very simple, infact in the CollectionRender's properties there are 2 points:

- Breadcrumb Style

- Breadcrumb Visibility Style

the standard values for these properties were in order "off"

and "invisible root", so we set them with "standard" and "no icon" values..

But nothing changed....

Coul someone help us??

Best Regards

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi,

As far as I know there is no standard approach

check these links for programmatic approach of creating breadcrumbs

https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/b

Thanks

Bala Duvvuri

Former Member
0 Kudos

Hi Alessandro Tocco,

do you want to breadcrumb by configuration or customization.

If you want by customization I will provide code to develop the breadcrumb.

Regard,

Kathiresan R

Former Member
0 Kudos

Hi Kathiresan,

I prefere to obtain a breadcrumb in my Layout Set just configuring it with the standard functionality...

But all type of help is appreciated!!

Thanks

Former Member
0 Kudos

Hi,

1. Create JspDynPage in NWDS.

2. In the JSP file include these lines

<%@ taglib uri="NavigationTagLibrary" prefix="nav"%>
<!-- Navigation URL Display -->
<nav:iterateNavNodesInSelectedPath>
<nav:navNodeAnchor navigationMethod="byURL"/>
<nav:ifHasMoreIterations>&gt;</nav:ifHasMoreIterations>
</nav:iterateNavNodesInSelectedPath>

3. Include follwin in portalapp.xml

<application-config>
<property name="SharingReference" value="com.sap.portal.themes.lafservice,com.sap.portal.navigation.service,com.sap.portal.navigation.helperservice,com.sap.portal.license.runtime,com.sap.portal.navigation.navigationtaglibrary"/>
</application-config>

<component-profile>
<property name="NavigationTagLibrary" value="/SERVICE/com.sap.portal.navigation.navigationtaglibrary/taglib/TagLibrary.tld"/>
</component-profile>

4. Deploy your component

5. Create iView for your component and add the iView to the desktop inner page of your desktop.

regards,

Kathiresan R

Note:

Points are welcome

Former Member
0 Kudos

Hi

Refer:

[http://help.sap.com/saphelp_nw04/helpdata/en/09/4c0d4113eff16fe10000000a1550b0/content.htm]

&

[http://help.sap.com/erp2005_ehp_03/helpdata/EN/87/3d48475ee8bd448c4031aa98d90524/frameset.htm]

Thanks...

Former Member
0 Kudos

Thank you Chetna,

but it doesn't solve my problem..