0

我正在尝试使用 C# 将 ForeignKey 列添加到 Kendo UI 中的网格中,并使用通过 Linq-to-Sql 连接的 SQL Server 数据库。我找不到填充组合框/下拉列表的方法..

我有控制器(创建 Linq-to-sql 文件时会自动创建模型).. 但我找不到填充组合框的方法。

这是代码:

c.ForeignKey(p => p.MerchantID, (IEnumerable)ViewData["Merchants"], "MerchantID", "Name").Title("Merchant").Width(150);
4

1 回答 1

0
/*********************  View  ***************************************/ 
columns.ForeignKey(p => p.CategoryID, (System.Collections.IEnumerable)ViewData["categoryList"], "CategoryID", "Category").Title("Organization Size").HeaderHtmlAttributes(new { @class = "fontbold" }).Width(170)

//*****************  Controller *************************//
 List<ManageModel> lookup = vendorTask.GetVendorCategory().Select(p => new ManageVendorModel { CategoryID = p.OrganizationSizeID, Category = p.OrganizationSizeName }).ToList<ManageModel>();
            lookup.Insert(0, (new ManageModel { CategoryID = 0, Category = " No Organization Size" }));
            ViewData["categoryList"] = lookup;
于 2013-07-02T10:03:27.303 回答