Showing related tags and posts across the entire site.
-
Hello, I just downloaded the latest version of ASP.NET controls and tried to build a tree with the C1.Web.UI.Controls.C1TreeView.C1TreeView and the C1TreeViewNodes. I need to populate the nodes from a database. What I like to do is, in case of the next level should be shown I like to have a postback...
-
I am dynamically populating a C1WebTreeView component from a database when a user clicks on a node. I have applied the attributes AllowSelectItem="True" ExpandSinglePath="True" SelectedItemStyle-CssClass="SELECTEDTREENODE" at design-time to the C1WebTreeView control in the...
-
Hi, To determine which items are checked you can perform this code. This will check 2 levels of items, but you can add another inner loop if you have a 3 rd level of items. Using C1.Web.Command; foreach (C1WebTreeViewItem mainItem in C1WebTreeView1.Items) { if (mainItem.Selected) { Response.Write(mainItem...
-
Hi, I have a treeview control in my C#.net web application. When i check on the child node its parent node should be checked automatically. When i check on the parent node all its child nodes should be checked automatically. similarlly when i uncheck a parent node all its childnodes should be unckecked...