Browse By Tags

  • Forum Post: C1TreeView <--> C1WebTreeView

    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...
  • Forum Post: Treeview is there a value field on the Item along with the text?

    In the treeview is there a way of setting a value field at the item level along with the text. I need to be able to grab the ID when a user selects the treeview item. spafa9
  • Forum Post: WebTreeView problem showing child items as selected

    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...
  • Forum Post: Re: Treeview Node Check

    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...
  • Forum Post: How can i Populate Treeview parent node,child node, subchild node from DB in C#.net

    How can i Populate Treeview parent node,child node, subchild node from DB in C#.net
Page 1 of 2 (40 items) 12