Won't Fix
Last Updated: 08 Jun 2022 08:05 by ADMIN
Completed
Last Updated: 10 Dec 2021 13:40 by ADMIN
Release R1 2022
Created by: Gert
Comments: 3
Category: Navigation
Type: Feature Request
15
Please add screenboundary detection for expandable menu items.

When there is not enough space for menu items to expand on the right side, expand them to the left side and vice-versa.

See attached screenshot for more information
Unplanned
Last Updated: 19 Aug 2021 14:30 by ADMIN
ADMIN
Created by: Nencho
Comments: 7
Category: Navigation
Type: Feature Request
11

			
Declined
Last Updated: 14 Jun 2021 15:26 by ADMIN
Created by: Matt
Comments: 1
Category: Navigation
Type: Feature Request
1
while replacing my RadMenu for the new RadNavigation, I was forced to stop because the RadNavigation does not support columns like the RadMenu can e.g.

<telerik:RadMenu runat="server" ID="radMainMenu" MaxDataBindDepth="2" EnableRoundedCorners="true" EnableShadows="true" EnableTextHTMLEncoding="true">
<DefaultGroupSettings RepeatColumns="2" RepeatDirection="Vertical" />
 </telerik:RadMenu>

Keep up the good work,
Thanks.
Unplanned
Last Updated: 14 Jun 2021 15:24 by ADMIN
Created by: Matt
Comments: 0
Category: Navigation
Type: Feature Request
4
I need to specify the Target as well as the NavigateUrl and Text when programmaticlly data binding.

Thanks.
Unplanned
Last Updated: 14 Jun 2021 13:09 by ADMIN
Created by: Matt
Comments: 0
Category: Navigation
Type: Feature Request
3
Please add "AppendDataBound" property to the RadNavigation control.
Unplanned
Last Updated: 13 Jun 2021 10:57 by ADMIN
Created by: Scott Horrocks
Comments: 0
Category: Navigation
Type: Feature Request
2
RadNavigation can be setup to expand on hover (see demo - http://demos.telerik.com/aspnet-ajax/navigation/functionality/expand-on-hover/defaultcs.aspx).

However, when the menu is collapsed to the More (hamburger) menu this functionality is lost. If the nodes don't have a navigate url they can be clicked to open the sub menu, but if they are set to navigate then clicking will navigate instead of opening the submenu.
Unplanned
Last Updated: 11 Jun 2021 09:03 by ADMIN
Created by: Steve Tikoian
Comments: 0
Category: Navigation
Type: Feature Request
4
A Vertical Orientation option would make the control usable as a side bar / sub navigation menu.  Currently, we're using a PanelBar to achieve this functionality, but it lacks the Adaptive behavior of the Navigation control.
Unplanned
Last Updated: 31 May 2021 16:16 by ADMIN
Created by: David
Comments: 2
Category: Navigation
Type: Feature Request
3
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.
Unplanned
Last Updated: 08 Jan 2021 12:42 by ADMIN
 For a Radmenu, when the current URL matches the site node url in the SiteMapDataSource, the corresponding menu items are highlighted (marked as selected).  This allows the user to see on the menu, where they are in the menu.

RadNavigation does not support this functionality.

 I've added the functionality myself, however it's not elegant as the NavigationNode does not contain it's parent value.   

Here is how I resolved it.


     private void RadNavigation1_NodeDataBound(object sender, Telerik.Web.UI.NavigationNodeEventArguments e)
        {
  System.Web.SiteMapNode node = ((System.Web.SiteMapNode)e.Node.DataItem);
            e.Node.Attributes.Add("Key", node.Key);

            if (e.Node.NavigateUrl == Page.Request.CurrentExecutionFilePath.ToString())
            {
                HighLightMenu(node);
            }
        }

        void HighLightMenu(System.Web.SiteMapNode node)
        {
            List<NavigationNode> nodes = (List<NavigationNode>)RadNavigation1.GetAllNodes();

            // find navigation node based on site node
            Telerik.Web.UI.NavigationNode navNode = nodes.Find(n => n.Attributes["Key"] != null && n.Attributes["Key"] == node.Key);

            //  Control ctrl = RadNavigation1.FindControl(navNode.ID);
            if (navNode != null)
                navNode.Selected = true;

            if (node.ParentNode != null)
                HighLightMenu(node.ParentNode);
        }
Unplanned
Last Updated: 07 Jan 2021 14:21 by ADMIN
Created by: Henrik
Comments: 0
Category: Navigation
Type: Feature Request
2
I'd like to see the following enhancements of the RadNavigation control:

1. Ability to make some nodes stick to the top menu even in collapsed mode..  That way you can have e.g. a logo in the top-left of the navigator.

2. Ability to right-align items.

Both features can be seen in the bootstrap NavBar..
Unplanned
Last Updated: 30 Dec 2019 14:49 by ADMIN
Unplanned
Last Updated: 10 Mar 2017 13:22 by ADMIN
ADMIN
Created by: Marin Bratanov
Comments: 0
Category: Navigation
Type: Bug Report
0
One workaround is to remove nodes that are not visible, e.g., in the Page_Load event:

RadNavigation1.Nodes.RemoveAll(x => !x.Visible);

Another workaround is to remove the HTML of hidden nodes. Note that this will not affect the nodes collections and they will still be present. Invoking operations or methods on such removed nodes can cause errors.

			<telerik:RadNavigation runat="server" ID="RadNavigation1" OnClientLoad="OnClientLoad">
				<Nodes>
					<telerik:NavigationNode Text="first"></telerik:NavigationNode>
					<telerik:NavigationNode Text="second" Visible="false"></telerik:NavigationNode>
					<telerik:NavigationNode Text="third"></telerik:NavigationNode>
				</Nodes>
			</telerik:RadNavigation>
			<script>
				function OnClientLoad(sender, args) {
					var nodes = sender.get_allNodes();
					var indicesToRemove = [];
					for (var i = 0; i < nodes.length; i++) {
						if (nodes[i].get_element().style.display == "none") {
							$telerik.$(nodes[i].get_element()).remove();
						}
					}
				}
			</script>
Unplanned
Last Updated: 29 Sep 2016 07:46 by ADMIN

1. Click the ComboBox

2. Select an item in its dropdown

3. Expected: no exception on selection, actual: A "Selection out of range" exception is thrown.

using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using Telerik.Web.UI;

public partial class ComboBoxNavigation : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            
        }
    }

    private DataTable CreateTestTable()
    {
        DataTable table = new DataTable();
        table.Columns.Add("Text");
        table.Columns.Add("Value");
        table.Columns.Add("test");
        table.Rows.Add("Item1", "1", "aaa");
        table.Rows.Add("Item1", "1", "aaa");
        table.Rows.Add("Item1", "1", "aaa");
      
        return table;
    }

    protected void rcbStaff_ItemsRequested(object sender, RadComboBoxItemsRequestedEventArgs e)
    {

        RadComboBox rcbUser = sender as RadComboBox;
        rcbUser.DataSource = CreateTestTable();
        rcbUser.DataTextField = "Text";
        rcbUser.DataValueField = "Value";
        rcbUser.DataBind();

    }

    protected void rcbStaff_SelectedIndexChanged(object sender, RadComboBoxSelectedIndexChangedEventArgs e)
    {

    }
}

            <telerik:RadNavigation ID="RadNavigation1" runat="server">
                <Nodes>
                    <telerik:NavigationNode Text="Home"  />
                    <telerik:NavigationNode Text="Candidate"  />
                    <telerik:NavigationNode Text="Preliminary Candidate"  />
                    <telerik:NavigationNode Text="StaffSearch" CssClass="staffSearchWrapper rootTemplate">
                        <NodeTemplate>
                            <telerik:RadComboBox ID="rcbStaff" 
                                AutoPostBack="true" 
                                runat="server"
                                EnableLoadOnDemand="True" 
                                OnItemsRequested="rcbStaff_ItemsRequested"
                                OnSelectedIndexChanged="rcbStaff_SelectedIndexChanged"
                               >
                            </telerik:RadComboBox>
                        </NodeTemplate>
                    </telerik:NavigationNode>
                </Nodes>
            </telerik:RadNavigation>


			
Unplanned
Last Updated: 01 Aug 2016 11:09 by ADMIN
ADMIN
Created by: Plamen
Comments: 1
Category: Navigation
Type: Feature Request
4
As for example:
1) the skinchooser in this demo -http://demos.telerik.com/aspnet-ajax/navigation/mobile-and-touch-support/responsive-behavior/defaultcs.aspx?product=navigation
2) the top left corner menu in this demo: http://demos.telerik.com/aspnet-ajax/mobile.aspx
3) http://mobify.github.io/pikabu/
Completed
Last Updated: 15 Mar 2016 15:42 by ADMIN
Completed
Last Updated: 01 Oct 2015 14:24 by ADMIN
Completed
Last Updated: 23 Apr 2015 14:15 by ADMIN