gridview默认排序表达式

发布于 2024-09-13 23:10:39 字数 323 浏览 4 评论 0原文

有人设法用默认排序扩展 GridView 吗? 这对我来说似乎很微不足道,但我无法完成它。

这个想法是将属性 DefaultSortExpression 添加到继承 GridView 的服务器控件。

  • 调用 Sort() 会执行额外的选择,我们不希望这样。
  • 设置 this.SelectArguments.SortExpression 似乎在我这样做之后得到了它的值设置,但这也不起作用。 (除非有一些我还没有尝试过的神奇事件)。

我希望能够在 GridView 进行数据绑定之前设置 SortExpression。

Has anyone managed to extend a GridView with default sorting?
This seems pretty trivial to me but i can't get it done.

The idea is to add a property DefaultSortExpression to a Server Control that inherits GridView.

  • Calling Sort() performs an additional select, we don't want that.
  • Setting this.SelectArguments.SortExpression seems to get it's value set after i do so that doesn't work either. (Unless there's some magical event i didn't try yet).

I want to be able to set the SortExpression before the GridView does it's databinding.

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

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

发布评论

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

评论(1

誰認得朕 2024-09-20 23:10:39
protected override DataSourceSelectArguments CreateDataSourceSelectArguments()
        {
            DataSourceSelectArguments dsa = base.CreateDataSourceSelectArguments();

            // dsa.SortExpression = "my field";

           return dsa;
}
protected override DataSourceSelectArguments CreateDataSourceSelectArguments()
        {
            DataSourceSelectArguments dsa = base.CreateDataSourceSelectArguments();

            // dsa.SortExpression = "my field";

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