1

ライブラリ「Telerik」に少し問題があります。本当は「checkBox」で「RadCombobox」を実装したいのですが、うまくいきますが、アイテムを「チェック」したいとき、それは不可能ですか?! サンプルコードは次のとおりです。属性「selected」のプロパティを変更しましたが、残念ながら「チェック済み」ボックスをチェックしていません.....

ご回答どうもありがとうございました!

<!-- 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;
4

1 に答える 1

5

DataBind最初にメソッドを呼び出してみてください

RadComboBoxSelectedEntity.DataBind();

呼び出した後DataBind、コードのこの行がまだ機能していないことを試すことができます。

RadComboBoxSelectedEntity.Items[1].Checked = true;
于 2012-06-22T12:34:34.117 に答える