This is a migrated thread and some comments may be shown as answers.

Load on demand and NodeEditing

3 Answers 63 Views
TreeView
This is a migrated thread and some comments may be shown as answers.
Jean-Marc
Top achievements
Rank 1
Jean-Marc asked on 06 Sep 2011, 11:43 AM
Is it normal on a tree loaded on demand that node editing is not working?
is there any workaround?

Thank you

3 Answers, 1 is accepted

Sort by
0
Jean-Marc
Top achievements
Rank 1
answered on 07 Sep 2011, 10:18 AM
anyone?
0
Jean-Marc
Top achievements
Rank 1
answered on 07 Sep 2011, 02:10 PM
nevermind, it was my fault. it works well
0
Plamen
Telerik team
answered on 07 Sep 2011, 02:55 PM
Hello Jean-Marc,

I tested all the trees in the Load on demand demo with the following code and didn't notice any unusual behavior:
<telerik:RadTreeView ID="RadTreeView4" runat="server" Height="300px" Width="100%" AllowNodeEditing="True" OnNodeEdit="RadTreeView1_NodeEdit">

protected void RadTreeView1_NodeEdit(object sender, RadTreeNodeEditEventArgs e)
   {
       RadTreeNode nodeEdited = e.Node;
       string newText = e.Text;
       nodeEdited.Text = newText;
   }

Hope this is helpful.


Greetings,
Plamen Zdravkov
the Telerik team

Thank you for being the most amazing .NET community! Your unfailing support is what helps us charge forward! We'd appreciate your vote for Telerik in this year's DevProConnections Awards. We are competing in mind-blowing 20 categories and every vote counts! VOTE for Telerik NOW >>

Tags
TreeView
Asked by
Jean-Marc
Top achievements
Rank 1
Answers by
Jean-Marc
Top achievements
Rank 1
Plamen
Telerik team
Share this question
or