我正在使用 MVC Contrib Grid 来渲染、排序和过滤我的数据网格,但是现在我遇到了问题,因为它已经针对 MVC3 和 Razor 进行了升级。我的 columns 集合中的 Custom 方法不适用于 aspx pages ,并且 columns Action 方法现在已过时。
我使用网格操作方法在 MVC 2 中呈现这样的列:
...
<% Html.Grid(Model).Columns(column => {
column.For(x => x.Id);
column.For(x => x.Name);
column.For(x => x.Email);
column.For(x => x.DateOfBirth);
column.For("View User").Named("Tools").Action(x => { %>
<td>
<%= Html.ActionLink("View", "View", new { id = p.Id })%>
<%= Html.ActionLink("Edit ", "Edit", new { id = p.Id })%>
//Snip as there are too many tools :-)
//.....
<%= Html.ActionLink("Delete", "Delete", new { id = p.Id })%>
</td>
<% });
...
现在在最新版本中,有一个自定义方法可以替换过时的 Action 方法。我在这里查看了它是如何完成的,它现在基本上对我有用,但是我在 aspx 视图(url 等)中释放了我的所有助手,现在需要在我的模型中以另一种方法呈现我的内容,如下所示:
...
<% Html.Grid(Model).Columns(column => {
column.For(x => x.Id);
column.For(x => x.Name);
column.For(x => x.Email);
column.For(x => x.DateOfBirth);
//the new custom column
column.Custom(Model.ToolsRenderer);
<% });
...
下面称为 ToolsRenderer 的网格模型方法用于渲染我的 html 字符串。
public UserManagementViewModel : BaseModel {
//..snip
//
public object ToolsRenderer(Client client)
{
List<string> links = new List<string>();
var editLink = new TagBuilder("a");
// here is my biggest problem, before Html.ActionLink used to make
// sure that I don't have any missing links or help me if i need to
// refactor an action / controller name :-(
editLink.Attributes["href"] = GetEditUserLink(client, HttpContext.Current.Request.Url.AbsoluteUri);
editLink.SetInnerText("edit");
links.Add(editLink.ToString());
...
...lots of links to be generated here
...
return MvcHtmlString.Create(string.join(" |", links))
}
//..snip
}
这暂时有效,但是有没有办法让我的 aspx 页面像下面的剃刀视图一样工作?
@Html.Grid(Model).Columns(column =>
{
column.For(x => x.Id).
column.For(x => x.Name);
column.Custom(@<td><a href='@Html.Actionlink("edit","user",new {id})' alt="@item.email"/><a></td>)
})
我想说的是:
...
column.Custom(%><td><a href='<%=Html.Actionlink("edit","user",new {id})%>' alt="<%=item.email%>"/><a></td><%)
...