我的组合是空的,直到我点击下拉列表(项目请求事件是火):那么在使用按需加载时在RadComboBox中设置初始项目(值和文本)的最佳策略是什么?
THX
答案 0 :(得分:0)
我认为你需要确保你的EnableLoadOnDemand设置为“true”。如果它是假的(可能缺少?),看起来你的下拉是空的,直到你点击空搜索框的底部。下面是一些可能有用的代码。
<telerik:RadComboBox ID="Category" runat="server" Width="175px" Height="150px"
EmptyMessage="Select a Category" EnableLoadOnDemand="true" ShowMoreResultsBox="true"
EnableVirtualScrolling="true" >
<WebServiceSettings Method="GetCategory" Path="GetCategory.asmx" />
</telerik:RadComboBox>