下面的代码是否有任何内容会阻止客户端事件“OnClientItemsRequested”触发?我在页面上有几个 RadComboBox 元素,有时它们会进入不加载任何内容并且不触发“OnClientItemsRequested”事件的状态。我能做些什么来强制这个事件触发吗?
<telerik:RadComboBox
ID="SomeFilter"
runat="server"
Height="230px" Width="300px" style="margin-bottom:5px"
DropDownWidth="298px"
EmptyMessage="Choose..."
HighlightTemplatedItems="true"
EnableLoadOnDemand="true"
EnableVirtualScrolling="true"
ItemRequestTimeout="500"
ShowMoreResultsBox="True"
OnClientSelectedIndexChanging="OnClientSelectedIndexChanging"
OnClientDropDownClosing="OnClientDropDownClosing"
OnClientBlur="OnClientBlur"
OnItemsRequested="TaskEmployeesFilter_ItemsRequested"
OnClientItemsRequested="OnClientItemsRequested"
EnableItemCaching="false">
<ItemTemplate>
...
</ItemTemplate>
</telerik:RadComboBox>