Infragistics UltraWinGrid CTRL+使用下拉过滤器时的行为
我有一个标准的 UltraWinGrid (V8.2),带有一些列/下拉过滤器。
我已经实现了 CTRL + A 来选择所有行。
但是,当应用了过滤器时,我只想选择未过滤掉的行上的所有内容。
我仔细选择我的用词,因为有几个可见属性,但它们似乎与屏幕上的实际可见性有关 - 显然这不是我想要的。
I have a standard UltraWinGrid (V8.2) with some column/dropdown filters.
I have implemented CTRL + A to select all rows.
However when there is a filter applied, I only want to select all on the row that are not filtered out.
I choose my words carefully as there are a couple of Visible properties but they seem to pertain to actual visibility on the screen - obviously this is not what I want.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用
UltraWinGrid.Rows.GetFilteredInNonGroupByRows()
或在执行选择操作时使用UltraGridRow.IsFilteredOut
。这有帮助吗?You could try using
UltraWinGrid.Rows.GetFilteredInNonGroupByRows()
or when doing your select operation useUltraGridRow.IsFilteredOut
. Does that help?