本文介绍了RadTreeView内RadComboBox的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好,

我在RadCombo内有一个RadTreeView控件,

当我单击 编辑 按钮时,相应的值放置在字段上
-
我获得了radtree的值,但不能将其放置为comboselectedindex
我的代码是贝娄

-

Hello,

I have a RadTreeView Control inside a RadCombo ,

When I Click Edit Button Then Corresponding Values Placed on the fields
--
i Got the values of radtree ,but can''t Placed it as comboselectedindex
My Code is Bellow

--

RadTreeView Product= (RadTreeView)ProductOptionComboBox.Items[0].FindControl("ProductOptionTree");
               RadTreeNode tn = new RadTreeNode();
               tn = Product.FindNodeByValue(dataSet.Tables[0].Rows[0]["cscwbsNodeID"].ToString());
               ProductOptionComboBox.Items[0].Value = tn.Value;
               ProductOptionComboBox.SelectedIndex =Convert.ToInt32( ProductOptionComboBox.Items[0].Value);




请帮助..............




Pls Help...........

推荐答案


这篇关于RadTreeView内RadComboBox的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 21:24