ブートストラップ selectpicker javascript 関数が asp で機能しません。
Javascript コード:
<script type="text/javascript">
$(document).ready(function () {
$('.selectpicker').selectpicker();
});
</script>
ASP コード:
<asp:DropDownList ID="DropDownList2" CssClass="selectpicker" data-style="btn-danger" runat="server">
<asp:ListItem>Action</asp:ListItem>
<asp:ListItem>Another action</asp:ListItem>
<asp:ListItem>Something else here</asp:ListItem>
</asp:DropDownList>