我有一个带有Kendo UI的MVC视图,它绑定了ListObject的值。从xml文件中获取数据时,Kendo Dropdown绑定值,但数据从数据库表中获取,而不是将值绑定到下拉列表。但是具有值并返回到Dropdown的绑定功能的List具有值。
这些值以Json格式绑定。
//Controller Code that returns value to Kendo Dropdown in View
public JsonResult BindTitles()
{
return Json(_title.GetTitle(), JsonRequestBehavior.AllowGet);
}
//Data Interface from Entity Framework
public partial interface ITitle
{
IList<tblTitle> GetTitle();
}
public IList<tblTitle> GetTitle()
{
List<tblTitle> tit = new List<tblTitle>();
tit = dbContext.GetTitle().ToList(); // Here the values are available in the "tit"
return tit;
}
答案 0 :(得分:0)
显示您配置了剑道下拉列表的视图的代码。控制器代码不足以为您提供解决方案。