AspxGridView 和 ShowHeaderFilterButton 属性
我的问题很简单。我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ASPxGridView 不对基础数据源应用筛选条件。因此,过滤完成后,网格的数据源具有与之前相同的记录计数。解决此问题的一个可能的解决方案是遍历 gridRows 并获取所需的 KeyField 值或 Row 对象:
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: