使用 MVCContrib 排序

发布于 2024-11-26 12:47:21 字数 214 浏览 2 评论 0原文

我有 公开课X { 公共列表 ListY { 获取;放; } }

公开课 Y { 公共 Y();

    public decimal Amount { get; set; }
}

我在网格中显示金额的值。如何对此列进行排序。 有没有办法访问此列以应用排序?

提前致谢 乌彭德拉

I have
public class X
{
public List ListY { get; set; }
}

public class Y
{
public Y();

    public decimal Amount { get; set; }
}

I am showing the value of Amount in the grid. How to sort on this column.
Is there a way to access this column to apply sort?

Thanks in advance
Upendra

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

素手挽清风 2024-12-03 12:47:21

在您看来,您应该有这样的内容:

 <%= Html.Grid(Model.PagedList).Columns(col => {
      col.For(l => l.Amount).Named("Amount");
      /* other columns here */
 }).Sort(Model.GridSortOptions) %>

在您的控制器操作中,您应该有这样的内容:

public ActionResult Index(GridSortOptions gridSortOptions)
{
        //Code
}

您可以在此处下载完整的 MvcContrib Grid 示例:

http://www.codeproject.com/KB/aspnet/Grid_Paging_In_MVC3.aspx

您将看到如何实现排序使用 MvcContrib 网格。

In your view, you should have something like this:

 <%= Html.Grid(Model.PagedList).Columns(col => {
      col.For(l => l.Amount).Named("Amount");
      /* other columns here */
 }).Sort(Model.GridSortOptions) %>

In your controller action, you would have something like this:

public ActionResult Index(GridSortOptions gridSortOptions)
{
        //Code
}

You can download a complete MvcContrib Grid sample here:

http://www.codeproject.com/KB/aspnet/Grid_Paging_In_MVC3.aspx

You will see how you can implement sorting using MvcContrib Grid.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文