如何在编辑模式下制作下拉列表

时间:2012-10-11 12:48:23

标签: c# asp.net c#-4.0

<asp:DropDownList ID="ddlReportFavorite" runat="server" Height="16px"
    Width="190px">
</asp:DropDownList>

我需要让dropdownlist可编辑,即当用户想要输入时,它允许输入。感谢。

修改

是否有任何方法使用javascript或任何其他替代方法而不使用Ajax Control Toolkit。感谢。

3 个答案:

答案 0 :(得分:1)

您可以使用引导选择选择器并为asp:dropdownlist添加额外属性,例如:

&#13;
&#13;
<asp:DropDownList ID="ddlEditStatusCode"
                  runat="server"
                  CssClass="form-control selectpicker"
                  data-live-search="true"
                  data-size="10">
</asp:DropDownList>
&#13;
&#13;
&#13;

您还需要将bootstrap-select.cssbootstrap-select.js添加到您的网页。

结果应该是这样的:

enter image description here

答案 1 :(得分:0)

答案 2 :(得分:0)

看看jQuery Searchable DropDown Plugin

jQuery Searchable DropDown Plugin Demo