0
Drupalのような検索ボックスをASP MVC 5アプリに追加すると、すべてのサイトを検索できますか? Drupalで経験を積んだASP MVCには初めてです。Drupalのような検索ボックスをASP MVC 5アプリに追加すると、すべてのサイトを検索できますか?
Drupalのような検索ボックスをASP MVC 5アプリに追加すると、すべてのサイトを検索できますか? Drupalで経験を積んだASP MVCには初めてです。Drupalのような検索ボックスをASP MVC 5アプリに追加すると、すべてのサイトを検索できますか?
あなたは検索オプションのためのコードの下に追加する必要があります。
まずあなたはJSファイル以下の参照を追加する必要があります。
Download JS and CSS files for Select2 Dropdown List
<script src="~/Scripts/select2.full.min.js"></script>
<link href="~/Content/select2.min.css" rel="stylesheet" />
Download and include in your view
次に、以下の追加表示されるコード:
$(function() {
$("#SearchBoxddl").select2({
placeholder: "-Select Options-"
});
});
<div class="col-sm-4 ">
<strong class="text-primary"><i class="fa fa-search"></i> Select Options</strong>
<p class="form-static-control">
@Html.DropDownListFor(model => model.Id, new SelectList(Model.SelectList, "Id", "Name"), "-Select Options-", new { @class = "form-control", @id = "SelectBoxddl" })
</p>
</div>
の可能性のある重複した[Layout.cshtmlにMVC5グローバル検索機能を設計する方法](http://stackoverflow.com/questions/37306604/how-to-design-an-mvc5- global-search-feature-in-layout-cshtml) –