5 Answers, 1 is accepted
0
RES
Top achievements
Rank 1
answered on 13 Apr 2012, 11:52 PM
This is how I do it.
$(node).remove();0
Johnny
Top achievements
Rank 2
answered on 14 Apr 2012, 02:20 AM
Thanks you so much. It worked.
0
Johnny
Top achievements
Rank 2
answered on 14 Apr 2012, 02:47 AM
By the way, how about rename? Sorry because I ask so much
0
RES
Top achievements
Rank 1
answered on 16 Apr 2012, 06:08 PM
I'm assuming you mean updating the text of a node client side correct?
It's funny you ask that because I just posted about this.
http://www.telerik.com/community/forums/aspnet-mvc/treeview/treeview-node-with-image.aspx
The Telerik guys suggest updating a node's text like the following.
It's funny you ask that because I just posted about this.
http://www.telerik.com/community/forums/aspnet-mvc/treeview/treeview-node-with-image.aspx
The Telerik guys suggest updating a node's text like the following.
$(node).find("> div > .t-in")[0].lastChild.nodeValue = "New text";0
Johnny
Top achievements
Rank 2
answered on 17 Apr 2012, 09:26 AM
Thanks so much