我正在使用devexpress ASPxComboBox,但我想知道如何允许用户输入值(如果它不在列表中)或从下拉列表中选择。
一个例子很棒!
谢谢,
添
答案 0 :(得分:1)
如果按下Enter键,我编写了一个代码,允许您将新项添加到ComboBox的Items集合中。
<script type="text/javascript">
function findItemByText(editor, newText) {
for(var i = 0; i< editor.GetItemCount(); i++)
if(editor.GetItem(i).text == newText)
return true;
return false;
}
function tryAddNewItem(editor, newText) {
if(!findItemByText(editor, newText))
editor.AddItem(newText);
}
</script>
...
<dx:ASPxComboBox ID="ASPxComboBox1" runat="server" DropDownStyle="DropDown" ValueType="System.String"
Width="286px">
<Items>
<dx:ListEditItem Text="Item 0" Value="0" />
<dx:ListEditItem Text="Item 1" Value="1" />
</Items>
<ClientSideEvents KeyPress="function(s,e) {
if(e.htmlEvent.keyCode == 13)
tryAddNewItem(s, s.GetText());
}"/>