Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7790879
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T21:43:25+00:00 2026-06-01T21:43:25+00:00

I am using the Telerik RadTreeView with ASP .Net C#. I am able to

  • 0

I am using the Telerik RadTreeView with ASP .Net C#. I am able to set the Selected Node using the following code:

        var node = radTreeViewMenuStructure.Nodes.FindNodeByValue(linkID.ToString());

        if (node != null) // <- equals null when not on the root of the tree
        {
            node.Selected = true;
            node.Expanded = true;
            node.ExpandParentNodes();
            node.Focus();
        }

The above code sets the selected node only if the node is just off the root and not enclosed in a parent node. My node = null when choosing an ID of a node that is enclosed within a parent node. Any suggestions?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T21:43:26+00:00Added an answer on June 1, 2026 at 9:43 pm

    The .FindNodeByValue looks in the Nodes of the tree view. It doesn’t look at each child node. The solution was to recursively walk tree. Here is my code that finally solved the issue:

        private void SelectLink(int linkID, RadTreeNodeCollection rootNodes)
        {
            var node = rootNodes.FindNodeByValue(linkID.ToString());
            if (node != null)
            {
                node.Selected = true;
                node.Expanded = true;
                node.ExpandParentNodes();
                node.Focus();
    
                ... Do some other work ...
    
                return;
            }
    
            // for each node with children  
            foreach (RadTreeNode item in rootNodes.Cast<RadTreeNode>().Where(item => item.Nodes.Count > 0))
            {
                // Recursive call to self to walk the tree
                SelectLink(linkID, item.Nodes);
            }
        }
    

    I then simply call the method with the root RadTreeView:

    SelectLink(radTreeViewMenuStructure.Nodes, idToFind);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using a Telerik Grid with ASP.NET MVC 3 Razor engine. When a user selects
I have an ASP.NET application using the Telerik Q1 2009 controls. I have a
I am using Telerik asp.net mvc extensions. I have an issue that happens only
I am using Telerik controls in an ASP.NET Website. It takes time while sending
We have two asp.net sites (based on episerver). Using Telerik Asp.net controls. We have
Currently using Telerik ASP .NET MVC Controls version 2011.2.712 Hello all, I am trying
I have been using telerik extensions for an asp.net mvc project, more specifically the
I'm using Telerik RadControls for ASP.NET and wondered if there was any way to
I am using Telerik ASP.Net Ajax controls (theoretically shouldn't matter who makes the 3rd
I'm using telerik ASP.Net Ajax grid component, and I'm facing a problem. If I'm

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.