如何在MVC WebGrid中显示行号

时间:2012-08-20 08:31:20

标签: asp.net-mvc asp.net-mvc-3 razor

我想在MVC WebGrid中有一个列row number。我该怎么办?

5 个答案:

答案 0 :(得分:11)

这是一个非常好的方法,但是当您使用排序或分页时,您的RowNumber值不会从页面上的1开始。

在我的项目中,我遇到了一个案例,我需要知道该行的索引,与WebGrid的分页/排序无关,我遇到了以下解决方案:

grid.Column(
    Header: "RowNumber",
    Format: item => item.WebGrid.Rows.IndexOf(item) + 1
)

答案 1 :(得分:9)

您可以使用包含指示行号的属性的视图模型。

假设您有以下域模型:

public class DomainModel
{
    public string Foo { get; set; }
}

现在,您构建一个与视图要求相对应的视图模型:

public class MyViewModel
{
    public int RowNumber { get; set; }
    public string Foo { get; set; }
}

然后:

public ActionResult Index()
{
    // fetch the domain model from somewhere
    var domain = Enumerable.Range(1, 5).Select(x => new DomainModel
    {
        Foo = "foo " + x
    });

    // now build the view model
    // TODO: use AutoMapper to perform this mapping
    var model = domain.Select((element, index) => new MyViewModel
    {
        RowNumber = index + 1,
        Foo = element.Foo
    });

    return View(model);
}

现在,您的视图会强烈地输入到视图模型中:

@model IEnumerable<MyViewModel>

@{
    var grid = new WebGrid(Model);
}

@grid.GetHtml(
    columns: grid.Columns(
        grid.Column("RowNumber"),
        grid.Column("Foo")
    )
)

现在让我们假设你出于某些愚蠢的原因不想使用视图模型。在这种情况下,如果您愿意,可以将视图转换为意大利面条代码:

@model IEnumerable<DomainModel>

@{
    var grid = new WebGrid(Model.Select((element, index) => new { element, index }));
}

@grid.GetHtml(
    columns: grid.Columns(
        grid.Column("RowNumber", format: item => item.index + 1),
        grid.Column("Foo", format: item => item.element.Foo)
    )
)

答案 2 :(得分:5)

只需添加以下代码

即可
grid.Column(header: "No."
,format: item => item.WebGrid.Rows.IndexOf(item) + 1 
          + Math.Round(Convert.ToDouble(grid.TotalRowCount / grid.PageCount) / grid.RowsPerPage) 
            * grid.RowsPerPage * grid.PageIndex)

Check this link了解更多信息

希望这会对某人有所帮助

答案 3 :(得分:4)

    @{
    int i=0;
foreach (var item in Model) {
    <tr>
    <td>
    @i
    </td>
        <td>
            @Html.DisplayFor(modelItem => item.Expense)
        </td>
        <td>
            @Html.ActionLink("Edit", "Edit", new { id=item.Id }) |
            @Html.ActionLink("Delete", "Delete", new { id = item.Id }, new { onclick = "return confirm('Are you sure you wish to delete this record?');" })

        </td>
    </tr>
    i++;
}
}

试试这个

答案 4 :(得分:-1)

添加:

grid.Column(header: "No.",
        format: item => item.WebGrid.Rows.IndexOf(item) + 1 + Math.Round(Convert.ToDouble(grid.TotalRowCount / grid.PageCount) / grid.RowsPerPage) * grid.RowsPerPage * grid.PageIndex)