如何清除 telerik radcombo 框(或)在函数调用中填充 "Empty Message" 属性 值?

How to clear telerik radcombo box (or) populate with "Empty Message" property value on a function call?

     <telerik:RadComboBox ID="rbt" runat="server" Skin="Office2010Black"   AllowCustomText="true" CheckBoxes="True" EnableCheckAllItemsCheckBox="true"  Width="125px" TabIndex="7" MarkFirstMatch="true" ToolTip="Select" EmptyMessage="Select" Height="100px" Filter="StartsWith">
   <Items>   
   <telerik:RadComboBoxItem runat="server" Text="High" Value="High" /> 
   <telerik:RadComboBoxItem runat="server" Text="Medium" Value="Medium" /> 
   <telerik:RadComboBoxItem runat="server" Text="Low" Value="Low" />
   </Items>
 </telerik:RadComboBox>

我在后面的代码中尝试过:

public void call()
       {
        rbt.ClearSelection();
        rbt.Text = "Select";
       }

我无法用上面的代码清除选择。我想在调用 call() 函数时取消选中 radcombo 框的选定项目。如果有人能告诉我是否缺少任何东西,我们将不胜感激。

您可以使用清除服务器端方法清除 RadComboBox 中的项目。

C#:

RadComboBox1.Items.Clear();

与:

using Telerik.Web.UI; 

后面代码中的以下代码解决了我取消选择组合框值的问题:

public void call()
           {
            if (rbt.CheckedItems.Count > 0)
                {
                    foreach(RadComboBoxItem rcbItem in rbt.Items)
                    {
                        rcbItem.Checked = false;
                    }              

                }
           }