AspxGridView 和 ShowHeaderFilterButton 属性

发布于 2024-10-17 08:00:26 字数 132 浏览 2 评论 0原文

我的问题很简单。我有一个 AspxGridView ,其中 DataTable 作为数据源。 当我使用 ShowHeaderFilterButton 属性启用的组合框筛选行时,数据源不会更新,并且行数保持不变。

如何计算未隐藏的行数?

my question is very simple. I have an AspxGridView with a DataTable as datasource.
Whene i filter rows by using the combox enabled by the ShowHeaderFilterButton property, the datasource is not updated and my row count remain the same.

How can i count the rows not hidden?

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

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

发布评论

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

评论(1

如歌彻婉言 2024-10-24 08:00:26

ASPxGridView 不对基础数据源应用筛选条件。因此,过滤完成后,网格的数据源具有与之前相同的记录计数。解决此问题的一个可能的解决方案是遍历 gridRows 并获取所需的 KeyField 值或 Row 对象:

object[] rows = new object[ASPxGridView1.VisibleRowCount];
        for(int i = 0; i < ASPxGridView1.VisibleRowCount; i++) {
            rows[i] = ASPxGridView1.GetRowValues(i, ASPxGridView1.KeyFieldName);
            //or
            rows[i] = ASPxGridView1.GetRow(i);
        } 

The ASPxGridView does not apply a filter condition on the underlying DataSource. So, after the filtering is done, the grid's DataSource has the same record count as it had before. A possible solution to this problem is to traverse through gridRows and getting required KeyField values or Row objects:

object[] rows = new object[ASPxGridView1.VisibleRowCount];
        for(int i = 0; i < ASPxGridView1.VisibleRowCount; i++) {
            rows[i] = ASPxGridView1.GetRowValues(i, ASPxGridView1.KeyFieldName);
            //or
            rows[i] = ASPxGridView1.GetRow(i);
        } 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文