hi ALL,
I am trying to implement RADTreeView in the RADCombox box. Iam adding all the items in the source. In the code behind iam using RADTreeView_Node Click event to get the selected value of the tree. when i click on the Treeview I should get the selected value of the tree into combobox.
But when iam selecting the value in the TreeView, it should get displayed in the combox box.
If i write like this
I am trying to implement RADTreeView in the RADCombox box. Iam adding all the items in the source. In the code behind iam using RADTreeView_Node Click event to get the selected value of the tree. when i click on the Treeview I should get the selected value of the tree into combobox.
But when iam selecting the value in the TreeView, it should get displayed in the combox box.
If i write like this
RadTreeView treeView1 = (RadTreeView)RadCombobox2.Controls[2].FindControl("RadTreeCombo");
RadCombobox2.Text = treeView1.SelectedNode.Text;
I can see that text is added to the combobox , when i keep break point.
But when the page is displayed iam not able to see the value in the comobox.
Do i need to write any other events for this.
Pls help me out........
Regards,
Asra