Asp.net RadComboBox加载所有项目,并允许在键入文本时进行筛选

Asp.net RadComboBox加载所有项目,并允许在键入文本时进行筛选,asp.net,telerik,Asp.net,Telerik,我使用RadComboBox,使用的代码与网站上提到的完全相同 我使用上面链接中提到的页面上的“服务器端”代码 但是,我能够在第一次加载页面时填充值,但当我键入文本时,它不会细化。我是否遗漏了一些内容 问候,, Francis P.你做过这样的属性吗。 EnableLoadOnDemand=“True” ShowMoreResultsBox=“true” EnableVirtualScrolling=“true” 对于筛选,您需要实现item requested事件。 OnItemsRe

我使用RadComboBox,使用的代码与网站上提到的完全相同

我使用上面链接中提到的页面上的“服务器端”代码

但是,我能够在第一次加载页面时填充值,但当我键入文本时,它不会细化。我是否遗漏了一些内容

问候,,
Francis P.

你做过这样的属性吗。

EnableLoadOnDemand=“True” ShowMoreResultsBox=“true” EnableVirtualScrolling=“true”
对于筛选,您需要实现item requested事件。

OnItemsRequested=“RadCombox1\u项目已请求” 还有像这样的服务器方法。 受保护的无效RadCombox1_项请求(对象发送方,RadComboxItemsRequestedEventArgs e) { }

你做过这样的属性吗。

EnableLoadOnDemand=“True” ShowMoreResultsBox=“true” EnableVirtualScrolling=“true”
对于筛选,您需要实现item requested事件。

OnItemsRequested=“RadCombox1\u项目已请求” 还有像这样的服务器方法。 受保护的无效RadCombox1_项请求(对象发送方,RadComboxItemsRequestedEventArgs e) { }

对于筛选,您只需设置markfirstmatch=“true”

对于筛选,只需设置markfirstmatch=“true”

EnableLoadOnDemand="True" ShowMoreResultsBox="true" EnableVirtualScrolling="true" OnItemsRequested="RadComboBox1_ItemsRequested" And server method like this. protected void RadComboBox1_ItemsRequested(object sender, RadComboBoxItemsRequestedEventArgs e) { }