Grid クラス (UserId、FirstName、LastName、Choice) にバインドしています。このコードを MVC 4 の Kendo Grid の列 (Choice) に配置する方法を知っている人はいますか?
@(Html.Kendo().DropDownList()
.Name("Test")
.DataTextField("Text")
.DataValueField("Value")
.Events(e => e.Change("change"))
.BindTo(new List<SelectListItem>()
{
new SelectListItem()
{
Text = "Option1",
Value = "1"
},
new SelectListItem()
{
Text = "Option2",
Value = "2"
}
}))
<script>
function change() {
var value = $("#Choice").val();
}
</script>
....
columns.Bound(p=> p.FirsName);
columns.Bound(p => p.LastName);
//How to Bind Choice???
バックエンド コードにテキスト ("Option1" または "Option2") も必要です。解決策はありますか?
編集済み
私は彼らが言ったことを正確に行いました:
意見:
columns.Bound(p => p.Choice).ClientTemplate("#=Choice#");
コントローラ:
public ActionResult Index()
{
PopulateCategories();
return View();
}
.....
private void PopulateCategories()
{
var dataContext = new TestDB();
var categories = dataContext.Peoples
.Select(c => new People()
{
ChoiceID = c.ChoiceID,
Choice = c.Choice
})
.OrderBy(e => e.Choice);
ViewData["categories"] = categories;
ViewData["defaultCategory"] = categories.First();
}
しかし、これはうまくいきません...