我使用 MVC3 Grid 来显示事件。
我需要以某种方式集成“NAME”的鼠标事件以显示项目的“描述”。
我该如何实施?谢谢你的任何线索!!!
@{
var grid = new WebGrid(source: Model.Events,
defaultSort: "Name",
rowsPerPage: 20);
}
@if (Model != null)
{
@grid.GetHtml(
tableStyle: "grid",
headerStyle: "head",
alternatingRowStyle: "alt",
rowStyle: "row",
selectedRowStyle: "selected-row",
columns: grid.Columns(
grid.Column("Name", "Event", style: "column"),
grid.Column(format: (item) => Html.ActionLink("Edit", "Edit", new { id = item.ID }), style: "column-action")
) )
}