RadComboBoxSelectedEntity

RadComboBoxSelectedEntity

我的图书馆“ Telerik”有点问题。
的确,我想实现一个“ RadCombobox”和“ checkBox”。它运行良好,但是当我想要
“检查”一个项目,这不可能吗?
这是我的示例代码。我更改了“已选择”属性的属性,但不幸的是,该属性未选中“已检查”框...

非常感谢您的回答!

<!-- language: lang-cs -->

//Define the sqlAdaptater for binding source

System.Data.SqlClient.SqlDataAdapter myBinding = new SqlDataAdapter("SELECT [name] FROM [dbo].[tblProcess] WHERE [currentVersion] = 1 AND [deleted] = 0 AND [parent] = 0",connectionString);

DataTable links = new DataTable();

myBinding.Fill(links);

//Set the attributs of RadCombobBox

RadComboBoxSelectedEntity.DataTextField = "name";
RadComboBoxSelectedEntity.DataValueField = "name";
RadComboBoxSelectedEntity.DataSource = links;

//Not working..its selected but not checked ?
RadComboBoxSelectedEntity.SelectedIndex = 1;

//Not exist ?? ->
RadComboBoxSelectedEntity.CheckedIndex = 1;

最佳答案

尝试先调用方法DataBind

RadComboBoxSelectedEntity.DataBind();


调用DataBind后,您可以尝试以下这行代码仍然无法运行,

RadComboBoxSelectedEntity.Items[1].Checked = true;

08-17 14:01