Hi there,
I am sure it is something very trivial, but I've spent couple of hours on that already and I think I am missing some obvious thing at that point.
I am trying to have something similar to next demo: http://demos.telerik.com/aspnet-ajax/combobox/examples/functionality/filteringcombo/defaultcs.aspx
However, filtering just doesn't work at all. Typing in the ComboBox is not doing anything.
Here is my sample application:
As you can see example is very simple and there is literally nothing in there.
I also tried setting
I am sure it is something very trivial, but I've spent couple of hours on that already and I think I am missing some obvious thing at that point.
I am trying to have something similar to next demo: http://demos.telerik.com/aspnet-ajax/combobox/examples/functionality/filteringcombo/defaultcs.aspx
However, filtering just doesn't work at all. Typing in the ComboBox is not doing anything.
Here is my sample application:
<telerik:RadScriptManager ID="m1" runat="server"/><telerik:RadComboBox ID="b1" runat="server" AutoPostBack="true" AllowCustomText="true" Filter="Contains" Style="vertical-align: middle;" Width="100px" Label="Filter:"> <Items> <telerik:RadComboBoxItem Text="None" Value="0" /> <telerik:RadComboBoxItem Text="Contains" Value="1"/> <telerik:RadComboBoxItem Text="StartsWith" Value="2" /> </Items></telerik:RadComboBox>I also tried setting
DataTextField to Text or Value. Doesn't matter - still no results.
I also tried to do DataBind() from server side code to ObservableCollection<string> and Dictionary<string,string> with no results as well.
Please advise.
Thanks,
Nick