Unplanned
Last Updated: 31 May 2021 16:16 by ADMIN
David
Created on: 12 May 2017 15:41
Category: Navigation
Type: Feature Request
3
RadNavigation Breadcrumb
When building Responsive webpages the Telerik navigation control to use is RadNavigation because it properly resizes when the screen is rotated unlike the RadMenu.  

However RadNavigation doesn't seem to have a way to see my current location within a website which is where the breadcrumb come is.

The addition of breadcrumb integration with RadNavigation would benefit Responsive web designer using the Telerik controls.
2 comments
ADMIN
Rumen
Posted on: 01 Jul 2019 11:45
Hi there,


The requested functionality is currently not supported by the component. Since this is a nice feature request, could you please vote for it? If it becomes a popular request, we will consider its implementation.

Of course, you can try to implement this feature yourself. When navigating to another regular page, it is reloaded every time. Therefore, you can use some logic similar to the following approach to preserve or control the selection:


protected void Page_Load(object sender, EventArgs e)
{
    if (!IsPostBack)
    {
        string path = HttpContext.Current.Request.Url.AbsolutePath;
        FileInfo info = new FileInfo(path);
        if (info.Name.ToLower() == "default.aspx")
        {
            SiteNavigationMenu.FindNodeByText("A18 Home").Selected = true;
        }
        else if (info.Name.ToLower() == "report.aspx")
        {
            SiteNavigationMenu.FindNodeByText("Report").Selected = true;
        }
    }
}


You can find another example at Preserve RadNavigation selection across content pages.

Regards,
Rumen
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Sadanan
Posted on: 27 Jun 2019 06:04

I was also trying to do similar thing like its available for RadMenu here

https://demos.telerik.com/aspnet-ajax/menu/examples/programming/showpath/defaultcs.aspx?Page=Open%20Classes%20Training

RadNavigation also doesn't have HighlightPath() as available in RadMenu. Is there any solution to integrate breadcrumb with navigation and also highlight the menu based on current url.