I am using the following script to make a treeview:
<% Html.Telerik().TreeView()
.Name(“TreeView”).Items(treeview => { treeview.Add() .Text("PART 1 ") .Expanded(false) .Content(() => {%> <ul> <li>text</li> <li>text</li> <li>text</li> <li>text</li> </ul> <%}); }).Render(); %>
Any idea how I can add a child node inside the ul section that can expand? Thanks in advance
From the Telerik website: