1

MVC Demo アプリケーションで WebGird を使用しており、WebGrid で ActionLink を使用しようとしていますが、どのように使用できますか?

意見:-

@model IEnumerable<RotationManager.Models.tableCustomer_M>
@{
    WebGrid listGrid = new WebGrid(Model);
}

 @listGrid.GetHtml(tableStyle: "table", footerStyle: "foot",
    columns: new[]{
     listGrid.Column("Customer_Id",format: (item) => Html.ActionLink(item.Customer_Id, "Edit",new {@id=item.Customer_Id},null))
    })

上記のコード行は機能しません。

私を助けてください!

どんな助けでも大歓迎です!

4

1 に答える 1

3
@listGrid.GetHtml(tableStyle: "table", footerStyle: "foot",
    columns: new[]{
     listGrid.Column(header: "Customer_Id", format: item => new HtmlString(
                     Html.ActionLink((string)item.Customer_Id.ToString(), 
                    "Edit", new { @id = item.Customer_Id} ).ToString()))
    })
于 2013-09-24T21:57:47.443 に答える