我在MVC项目中有一个视图,该视图具有一个WebGrid,该WebGrid由我传递给该视图的“帐户”模型绑定。
在我的“帐户”控制器中,我创建了SelectedListItem的列表,其中包含DropDownList选项,然后将其设置为ViewBag:
public ActionResult Index()
{
var accounts = db.Accounts;
var groups = db.Groups;
List<SelectListItem> groupList = new List<SelectListItem>();
foreach(var item in groups)
{
groupList.Add(new SelectListItem()
{
Value = item.group_id.ToString(),
Text = item.group_name
});
}
ViewBag.Groups = groupList;
return View(accounts);
}
DropDownList包含3个条目,其值和文本如下:
1,一个 2,两个 3,三
我的问题是获取绑定数据的group_id(值)以正确显示DropDownList上的group_name(文本)。
这是我到目前为止所拥有的:
grid.Column("group_id","Group", format: (item) => @Html.DropDownList("GroupId", (List<SelectListItem>)ViewBag.Groups))
DropDownList确实包含了我之前提到的所有3个值,只是没有将所有绑定的Account的DropDownList都设置为正确的值,如图所示:
我已经编辑了这篇文章以添加我的查看代码。
@model IEnumerable<Account>
@{
ViewBag.Title = "Index";
WebGrid grid = new WebGrid(Model, rowsPerPage: 10);
}
<h2>Fee Invoices</h2>
@grid.GetHtml(tableStyle: "table table-bordered",
mode: WebGridPagerModes.All,
firstText: "<< First",
previousText: "< Prev",
nextText: "Next >",
lastText: "Last >>",
columns: grid.Columns(
grid.Column("account_name", "Account"),
grid.Column("account_number", "Account Number"),
grid.Column("as_of_date", "Date", format: (item) => string.Format("{0:MM/dd/yyyy}", item.as_of_date)),
grid.Column("approved", "Approved", format: @<text><input id="select" class="box" name="select" type="checkbox" @(item.approved ? "checked='checked'" : "") value="@item.approved" /></text>),
grid.Column("group_id","Group", format: (item) => @Html.DropDownList("GroupId", (List<SelectListItem>)ViewBag.Groups))
)
))
答案 0 :(得分:0)
您可以将Dictionary<int, string>
和group_id
中的group_name
而不是SelectListItem
的列表传递到视图,然后使用它来创建DropDownList
正确的值。
在控制器中
public ActionResult Index()
{
var accounts = db.Accounts;
var groups = db.Groups;
// this line creates a Dictionary<int, string> where group_id is the key and group_name the value
var groupsNames = groups.ToDictionary(x => x.group_id, x => x.group_name);
ViewBag.GroupsNames = groupsNames;
return View(accounts);
}
然后在视图中声明一个类似这样的函数(通常在html部分之前)
@functions
{
public List<SelectListItem> CreateSelectList(int groupId)
{
var newList = new List<SelectListItem>();
foreach (var val in (Dictionary<int, string>)ViewBag.GroupsNames)
{
newList.Add(new SelectListItem
{
Text = val.Value,
Value = val.Key.ToString(),
Selected = val.Key == groupId
});
}
return newList;
}
}
并使用它填充下拉列表
grid.Column("group_id", "Group", format: (item) => Html.DropDownList("GroupId", CreateSelectList((int)item.group_id)))
或者,如果您不需要下拉列表,而只想显示组的名称,则可以
grid.Column("group_id", "Group", format: (item) => ((Dictionary<int, string>)ViewBag.GroupsNames)[item.group_id])
,在这种情况下,您不需要此功能。