ASP.NET MVC (Razor) プロジェクトにChosen JQuery Plugin を使用しています。ドロップダウンリストの場合、 によって設定されたデフォルトのテキスト値は表示されdata_placeholder
ず、代わりにリストの最初の項目が表示されます。
<div class="editor-field">
@Html.DropDownList("AuthorId", (IEnumerable<SelectListItem>)ViewBag.AuthorId, new
{
@class = "chzn-dropdown",
data_placeholder = "Select Author...",
style = "width:270px;"
})
@Html.ValidationMessageFor(model => model.Author)
</div>
ドロップダウンリストのデフォルトのテキストを表示するには?