I have a implemented the Filter in RadCombobox, But i does not want user to insert the custom text in the Dropdown so i have set the following property AllowCustomText = "False"
but it is not working and user is able to insert custom text.
Sample Combobox Code:
<telerik:RadComboBox runat="server"
AllowCustomText="False" Filter="StartsWith"
OnClientTextChange="rcbName_ClientTextChange"
OnClientSelectedIndexChanged="rcbName_ClientSelectedIndexChanged">
<Items>
<telerik:RadComboBoxItem runat="server" Text="Test"/>
<telerik:RadComboBoxItem runat="server" Text="Tests"/>
<telerik:RadComboBoxItem runat="server" Text="testData"/>
<telerik:RadComboBoxItem runat="server" Text="Other"/>
</Items>
</telerik:RadComboBox>