我使用RadComboBox并使用与网站上提到的完全相同的代码 http://demos.telerik.com/aspnet-ajax/combobox/examples/populatingwithdata/autocompletesql/defaultcs.aspx
我在上面链接中提到的页面上使用“服务器端”的代码。
但是我可以在第一次加载页面时填充值,但是当我输入文本时它不会改进。我错过了什么?
此致 Francis P。
答案 0 :(得分:2)
你做过这样的属性吗?
EnableLoadOnDemand="True"
ShowMoreResultsBox="true"
EnableVirtualScrolling="true"
对于过滤,您需要实现项目请求的事件。
OnItemsRequested="RadComboBox1_ItemsRequested"
And server method like this.
protected void RadComboBox1_ItemsRequested(object sender, RadComboBoxItemsRequestedEventArgs e)
{
}
答案 1 :(得分:2)
对于过滤,您只需设置markfirstmatch =“true”
即可