RadControls for ASP.NET AJAX
At the moment, it is not possible to assign a real template to a client-side node. Templates are rendered on the server side, hence the limitation. If you need some additional HTML (no server controls) you can "inject" it in the node's HTML. Here is a JavaScript code sample to get you started:
CopyJavaScript
var treeView = $find("<%= RadTreeView1.ClientID %>");
var node = new Telerik.Web.UI.RadTreeNode();
node.set_text("Test");
treeView.get_nodes().add(node);
var html = "<table border='1'><tr><td>One</td><td>Two</td></tr></table>";
var contentElement = node.get_contentElement();
contentElement.innerHTML = html;
<%