ASP.NET GridView 对方法数据进行排序
我将 GridView 绑定到域模型对象,该域模型对象有一个方法用于计算要在网格上显示的格式化值。我想使用此方法作为我的显示值,这很好,但我也希望能够对该方法返回的值进行排序。我的排序表达式目前只能接受属性/字段。
请帮忙!我需要做什么才能让它发挥作用?
我实际上使用的是 SPGridView,但这对我的问题没有太大影响。
谢谢。
I'm binding a GridView to a domain model object, this domain model object has a method for working out a formatted value to display on the grid. I'd like to use this method for my display value, which is fine, but I'd also like to be able to sort on the value returned by that method. My sort expression can only take in a property/field at the moment.
Help please! What do I need to do to get this to work?
I'm using an SPGridView actually, but that doesn't make a lot of difference to my problem.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
数据绑定只能针对属性(而不是方法)进行,因此您可以创建一个调用自定义显示方法并返回其输出的属性。
The databinding can only occur against properties (not methods), so you could make a property that calls your custom display method and returns its output.