Advertisement
Guest User

Untitled

a guest
Mar 28th, 2015
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. DataSet ds = dwdb.ExecuteDataSet("sp_getItemGroupsList");
  2.  
  3. ItemGroups iG = new ItemGroups();
  4. //find the treeview
  5. RadTreeView tree = (RadTreeView)this.RadComboBox1.Items[0].FindControl("RadTreeView1");
  6.  
  7. tree.DataSource = ds;
  8. tree.DataBind();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement