服务器验证带有自定义文本的按需加载的RadComboBox为true

时间:2011-02-02 15:06:41

标签: asp.net telerik

如何在服务器端使用LoadonDemand验证RadComboBox,并且AllowCustomText为true?我有以下代码但它没有正确验证。

  protected void RadComboBox1ServerValidate(object sender, ServerValidateEventArgs arg)
    {
        arg.IsValid = RadComboBox1.SelectedValue.Length > 0;
    }

2 个答案:

答案 0 :(得分:0)

使用LOD时,检查组合框的选定文本或值,而不是其选定值。

答案 1 :(得分:0)

Combobox_SelectedIndexChange事件中,检查RadComboBox是否有selectedValue> 0.如果选择值> 0,那么你必须认为输入了自定义文本。