0
我有一個MVC視圖與Kendo UI綁定ListObject的值。當數據從xml文件中獲取時,Kendo Dropdown會綁定該值,但是數據是從數據庫的表中獲取的,並不會將該值綁定到下拉列表中。但是具有值並返回到Dropdown的綁定函數的列表具有值。值不填充到劍道下拉
這些值以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;
}