<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Create SharePoint breadcrumbs with Mavention Simple SiteMapPath</title>
	<atom:link href="http://blog.mastykarz.nl/create-sharepoint-breadcrumbs-mavention-simple-sitemappath/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mastykarz.nl/create-sharepoint-breadcrumbs-mavention-simple-sitemappath/</link>
	<description>Innovation Matters &#124; SharePoint Server MVP &#124; ISSN 2210-9390</description>
	<lastBuildDate>Thu, 09 Feb 2012 05:22:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Max</title>
		<link>http://blog.mastykarz.nl/create-sharepoint-breadcrumbs-mavention-simple-sitemappath/comment-page-1/#comment-115365</link>
		<dc:creator>Max</dc:creator>
		<pubDate>Fri, 06 Jan 2012 17:42:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/create-sharepoint-breadcrumbs-mavention-simple-sitemappath/#comment-115365</guid>
		<description>Thanks for the tutorial, it was really helpful. :)</description>
		<content:encoded><![CDATA[<p>Thanks for the tutorial, it was really helpful. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Waldek Mastykarz</title>
		<link>http://blog.mastykarz.nl/create-sharepoint-breadcrumbs-mavention-simple-sitemappath/comment-page-1/#comment-95871</link>
		<dc:creator>Waldek Mastykarz</dc:creator>
		<pubDate>Mon, 10 Oct 2011 03:12:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/create-sharepoint-breadcrumbs-mavention-simple-sitemappath/#comment-95871</guid>
		<description>@Dabbu: In order to skip a navigation level in breadcrumbs you would either have to create your own navigation provider or you would have to customize the breadcrumb control and make it not display the second level. Changing the navigation configuration is not enough.</description>
		<content:encoded><![CDATA[<p>@Dabbu: In order to skip a navigation level in breadcrumbs you would either have to create your own navigation provider or you would have to customize the breadcrumb control and make it not display the second level. Changing the navigation configuration is not enough.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dabbu</title>
		<link>http://blog.mastykarz.nl/create-sharepoint-breadcrumbs-mavention-simple-sitemappath/comment-page-1/#comment-95191</link>
		<dc:creator>Dabbu</dc:creator>
		<pubDate>Wed, 05 Oct 2011 08:19:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/create-sharepoint-breadcrumbs-mavention-simple-sitemappath/#comment-95191</guid>
		<description>Hi,

I have this on my master page.
&lt;asp:ContentPlaceHolder id=\&quot;PlaceHolderTitleBreadcrumb\&quot; runat=\&quot;server\&quot;&gt;					
&lt;asp:SiteMapPath ID=\&quot;SiteMapPath1\&quot;
runat=\&quot;server\&quot;
SiteMapProviders=\&quot;SPSiteMapProvider,SPContentMapProvider\&quot;
RenderCurrentNodeAsLink=\&quot;false\&quot;
NodeStyle-CssClass=\&quot;breadcrumbNode\&quot;
CurrentNodeStyle-CssClass=\&quot;breadcrumbCurrentNode\&quot;
RootNodeStyle-CssClass=\&quot;breadcrumbRootNode\&quot;
HideInteriorRootNodes=\&quot;true\&quot;
SkipLinkText=\&quot;\&quot; 
CssClass=\&quot;metso-breadcrumb\&quot;/&gt;								
&lt;/asp:ContentPlaceHolder&gt;

And on my page layout m ovveriding it with this. 
&lt;asp:Content ContentPlaceHolderId=\&quot;PlaceHolderTitleBreadcrumb\&quot; runat=\&quot;server\&quot;&gt;

&lt;asp:SiteMapPath ID=\&quot;siteMapPath\&quot; 
runat=\&quot;server\&quot;	NodeStyle-CssClass=\&quot;breadcrumbNode\&quot; 
CurrentNodeStyle-CssClass=\&quot;breadcrumbCurrentNode\&quot; 
RootNodeStyle-CssClass=\&quot;breadcrumbRootNode\&quot; 
HideInteriorRootNodes=\&quot;true\&quot;								
CssClass=\&quot;metso-breadcrumb\&quot;
SiteMapProvider=\&quot;CurrentNavSiteMapProviderNoEncode\&quot;
RenderCurrentNodeAsLink=\&quot;true\&quot; SkipLinkText=\&quot;\&quot;/&gt;

&lt;/asp:Content&gt;

My Requirement is that i want to drop News from this navigation :
Home / News / India / Testpage

required: Home / India / Testpage


Please help me how can i get it, Tried with navigation settings but it dosent work for me.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I have this on my master page.<br />
&lt;asp:ContentPlaceHolder id=\&quot;PlaceHolderTitleBreadcrumb\&quot; runat=\&quot;server\&quot;&gt;<br />
&lt;asp:SiteMapPath ID=\&quot;SiteMapPath1\&quot;<br />
runat=\&quot;server\&quot;<br />
SiteMapProviders=\&quot;SPSiteMapProvider,SPContentMapProvider\&quot;<br />
RenderCurrentNodeAsLink=\&quot;false\&quot;<br />
NodeStyle-CssClass=\&quot;breadcrumbNode\&quot;<br />
CurrentNodeStyle-CssClass=\&quot;breadcrumbCurrentNode\&quot;<br />
RootNodeStyle-CssClass=\&quot;breadcrumbRootNode\&quot;<br />
HideInteriorRootNodes=\&quot;true\&quot;<br />
SkipLinkText=\&quot;\&quot;<br />
CssClass=\&quot;metso-breadcrumb\&quot;/&gt;<br />
&lt;/asp:ContentPlaceHolder&gt;</p>
<p>And on my page layout m ovveriding it with this.<br />
&lt;asp:Content ContentPlaceHolderId=\&quot;PlaceHolderTitleBreadcrumb\&quot; runat=\&quot;server\&quot;&gt;</p>
<p>&lt;asp:SiteMapPath ID=\&quot;siteMapPath\&quot;<br />
runat=\&quot;server\&quot;	NodeStyle-CssClass=\&quot;breadcrumbNode\&quot;<br />
CurrentNodeStyle-CssClass=\&quot;breadcrumbCurrentNode\&quot;<br />
RootNodeStyle-CssClass=\&quot;breadcrumbRootNode\&quot;<br />
HideInteriorRootNodes=\&quot;true\&quot;<br />
CssClass=\&quot;metso-breadcrumb\&quot;<br />
SiteMapProvider=\&quot;CurrentNavSiteMapProviderNoEncode\&quot;<br />
RenderCurrentNodeAsLink=\&quot;true\&quot; SkipLinkText=\&quot;\&quot;/&gt;</p>
<p>&lt;/asp:Content&gt;</p>
<p>My Requirement is that i want to drop News from this navigation :<br />
Home / News / India / Testpage</p>
<p>required: Home / India / Testpage</p>
<p>Please help me how can i get it, Tried with navigation settings but it dosent work for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dabbu</title>
		<link>http://blog.mastykarz.nl/create-sharepoint-breadcrumbs-mavention-simple-sitemappath/comment-page-1/#comment-95190</link>
		<dc:creator>Dabbu</dc:creator>
		<pubDate>Wed, 05 Oct 2011 08:19:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/create-sharepoint-breadcrumbs-mavention-simple-sitemappath/#comment-95190</guid>
		<description>Hi,

I have this on my master page.
					
								


And on my page layout m ovveriding it with this. 






My Requirement is that i want to drop News from this navigation :
Home / News / India / Testpage

required: Home / India / Testpage


Please help me how can i get it, Tried with navigation settings but it dosent work for me.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I have this on my master page.</p>
<p>And on my page layout m ovveriding it with this. </p>
<p>My Requirement is that i want to drop News from this navigation :<br />
Home / News / India / Testpage</p>
<p>required: Home / India / Testpage</p>
<p>Please help me how can i get it, Tried with navigation settings but it dosent work for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kalpana</title>
		<link>http://blog.mastykarz.nl/create-sharepoint-breadcrumbs-mavention-simple-sitemappath/comment-page-1/#comment-94513</link>
		<dc:creator>Kalpana</dc:creator>
		<pubDate>Thu, 29 Sep 2011 11:13:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/create-sharepoint-breadcrumbs-mavention-simple-sitemappath/#comment-94513</guid>
		<description>Thank you - I did that.</description>
		<content:encoded><![CDATA[<p>Thank you &#8211; I did that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Waldek Mastykarz</title>
		<link>http://blog.mastykarz.nl/create-sharepoint-breadcrumbs-mavention-simple-sitemappath/comment-page-1/#comment-94476</link>
		<dc:creator>Waldek Mastykarz</dc:creator>
		<pubDate>Thu, 29 Sep 2011 05:29:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/create-sharepoint-breadcrumbs-mavention-simple-sitemappath/#comment-94476</guid>
		<description>@Kalpana: Unfortunately the source code for this solution is not available. What you could try is to disassemble the binaries and extract the code from there.</description>
		<content:encoded><![CDATA[<p>@Kalpana: Unfortunately the source code for this solution is not available. What you could try is to disassemble the binaries and extract the code from there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kalpana</title>
		<link>http://blog.mastykarz.nl/create-sharepoint-breadcrumbs-mavention-simple-sitemappath/comment-page-1/#comment-94394</link>
		<dc:creator>Kalpana</dc:creator>
		<pubDate>Wed, 28 Sep 2011 17:02:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/create-sharepoint-breadcrumbs-mavention-simple-sitemappath/#comment-94394</guid>
		<description>Thank you for your quick response. Do you have the source code available? If so, can you please send me the url from where I can download or email me the code?

Thanks
Kalpana</description>
		<content:encoded><![CDATA[<p>Thank you for your quick response. Do you have the source code available? If so, can you please send me the url from where I can download or email me the code?</p>
<p>Thanks<br />
Kalpana</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Waldek Mastykarz</title>
		<link>http://blog.mastykarz.nl/create-sharepoint-breadcrumbs-mavention-simple-sitemappath/comment-page-1/#comment-94381</link>
		<dc:creator>Waldek Mastykarz</dc:creator>
		<pubDate>Wed, 28 Sep 2011 14:33:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/create-sharepoint-breadcrumbs-mavention-simple-sitemappath/#comment-94381</guid>
		<description>@Kalpana: Unfortunately I&#039;m afraid you cannot do this very easily. The breadcrumb is built using navigation provider which uses Site Title instead of the Welcome Page Title in the navigation. So if you want to explicitly use Welcome Page Title you would have to reimplement the logic of retrieving breadcrumb nodes.</description>
		<content:encoded><![CDATA[<p>@Kalpana: Unfortunately I&#039;m afraid you cannot do this very easily. The breadcrumb is built using navigation provider which uses Site Title instead of the Welcome Page Title in the navigation. So if you want to explicitly use Welcome Page Title you would have to reimplement the logic of retrieving breadcrumb nodes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kalpana</title>
		<link>http://blog.mastykarz.nl/create-sharepoint-breadcrumbs-mavention-simple-sitemappath/comment-page-1/#comment-94270</link>
		<dc:creator>Kalpana</dc:creator>
		<pubDate>Tue, 27 Sep 2011 18:26:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/create-sharepoint-breadcrumbs-mavention-simple-sitemappath/#comment-94270</guid>
		<description>Thank you for this excellent tool. However I have a request from the client who want the Welcome Page title to also be displayed on the breadcrumb. Is this possible with some settings on the Master Page.
Appreciate your quick response.
Thanks
Kalpana</description>
		<content:encoded><![CDATA[<p>Thank you for this excellent tool. However I have a request from the client who want the Welcome Page title to also be displayed on the breadcrumb. Is this possible with some settings on the Master Page.<br />
Appreciate your quick response.<br />
Thanks<br />
Kalpana</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kalpana</title>
		<link>http://blog.mastykarz.nl/create-sharepoint-breadcrumbs-mavention-simple-sitemappath/comment-page-1/#comment-94263</link>
		<dc:creator>Kalpana</dc:creator>
		<pubDate>Tue, 27 Sep 2011 17:57:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.mastykarz.nl/create-sharepoint-breadcrumbs-mavention-simple-sitemappath/#comment-94263</guid>
		<description>Hi - this is a great tool and we have been using it - there is however a new request from one of our clients. They want the breadcrumb to display the Title of the Default.aspx \ Welcome Page. Any ideas as to how this can be accomplished?

Thanks
Kalpana</description>
		<content:encoded><![CDATA[<p>Hi &#8211; this is a great tool and we have been using it &#8211; there is however a new request from one of our clients. They want the breadcrumb to display the Title of the Default.aspx \ Welcome Page. Any ideas as to how this can be accomplished?</p>
<p>Thanks<br />
Kalpana</p>
]]></content:encoded>
	</item>
</channel>
</rss>

