Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Build JavaScript UI
Javascript
Telerik
Build modern .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
AI for Developers & IT
Ensure AI program success
MCP Servers
AI for UI
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
UI Tools
CMS
Free Tools
Support and Learning
Productivity and Design Tools
TreeNode
NewNode = new TreeNode(ThisName , ThisID.ToString()); NewNode.ChildNodes i cann't find it in radtreeview
RadTreeNode
newNode = new RadTreeNode(ThisName, ThisID.ToString());
private void BuildTreeView(RadTreeNodeCollection nodes, Guid IntParent) { Guid ThisID; String ThisName; IPredicate filter; var enCollection = new EntityCollection<GLChartOfAccountEntity>(); BL.GL.FillChartOfAccount(enCollection, null);
filter = (GLChartOfAccountFields.ParentAccountNo == IntParent);
var children = new EntityView2<GLChartOfAccountEntity>(enCollection, filter);
// no child nodes, exit function if (children.Count == 0) return;
foreach (GLChartOfAccountEntity child in children) { ThisID = child.AccountNo; ThisName = child.ENAccountName;
RadTreeNode newNode = new RadTreeNode(ThisName, ThisID.ToString());
nodes.Add(newNode); newNode.Toggle();
// here is problem BuildTreeView(newNode, ThisID.ToString()); } } in microsoft tree i call it like BuildTreeView(newNode.ChildNodes, ThisID.ToString()); what is the same in radtreeview ?