使用 MVCContrib 排序
我有 公开课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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您看来,您应该有这样的内容:
在您的控制器操作中,您应该有这样的内容:
您可以在此处下载完整的 MvcContrib Grid 示例:
http://www.codeproject.com/KB/aspnet/Grid_Paging_In_MVC3.aspx
您将看到如何实现排序使用 MvcContrib 网格。
In your view, you should have something like this:
In your controller action, you would have something like this:
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.