我有一个带有 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;
}