ASP.NET GridView 对方法数据进行排序

发布于 2024-09-02 15:14:13 字数 197 浏览 5 评论 0原文

我将 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 技术交流群。

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

发布评论

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

评论(1

依 靠 2024-09-09 15:14:13

数据绑定只能针对属性(而不是方法)进行,因此您可以创建一个调用自定义显示方法并返回其输出的属性。

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.

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