ビューで htmlhelper ドロップダウンリストを使用します。
@Html.DropDownListFor(model => model.GroupID, (SelectList)ViewBag.Groups, "Choose...",
new { id = "GroupsDropDown" })
ViewBag.Groups= new SelectList(db.Groups.ToList(), "GroupID", "GroupName");
2 つの質問があります: 1- jquery を使用して "Html.Kendo().DropDownListFor(...) を使用せずに Html.DropDownListFor() を Kendo dropDown に変更するにはどうすればよいですか? 次のコードを使用しましたが、動作しません:
<script type="text/javascript">
$("[id$='DropDown']").kendoDropDownList();
</script>
2- ドロップダウンの入力に ViewBags を使用しているというのは本当ですか? viewbag の代わりに使用できるより良い方法はありますか?
助けてくれてありがとう。