當我使用asp DropDownList並用一些項目(a,ab,abc,b,ba等)填充它時,我點擊打開下拉列表並在鍵盤上鍵入'a'以'a'開頭的第一個項目,當我輸入'ab'時,它會轉到'ab'。
但是在Telerik RadComboBox中,當我鍵入'ab'時,它會轉到以'b'開始而不是'ab'開始的第一個項目。
是否有可能在RadComboBox上以某種方式解決這個問題?
RadComboBox沒有默認的DropDownList功能
<telerik:RadComboBox ID="rcb_Products" runat="server" DataTextField="ProductName" DataValueField="ProductId"
Width="100%" Skin="Windows7">
</telerik:RadComboBox>
...
this.rcb_Products.DataSource = productsList;
this.rcb_Products.DataTextField = "Text";
this.rcb_Products.DataValueField = "Value";
this.rcb_Products.DataBind();
...
你能告訴我你的rad組合框的設計結構和綁定嗎? –
我用代碼更新了問題。 – 1110