ライブラリ「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;