Delphi QuantumGrid 排序后 GetSelectedRowIndex

发布于 2024-07-19 17:44:52 字数 353 浏览 3 评论 0原文

我有 D2006,并且在项目中使用 DevExpress QuantumGrid 6。 我在非绑定模式下使用它。 我有几行,当用户选择一行并单击按钮时,我需要触发一个操作。 当网格未按用户排序时,效果很好。 我使用此代码来了解用户选择的行:

index := cxMainTable.DataController.GetSelectedRowIndex(0);
cxMainTable.DataController.Values[index, 0];

但是当用户通过单击列标题对网格进行排序时,返回的索引对于当前显示的顺序是正确的,但第二行返回的值是您想要的值预计网格是否未排序。

谢谢。

I have D2006 and I am using DevExpress QuantumGrid 6 in a project. I am using it in unbound mode. I have several rows and I need to trigger an action when user select a row and click a button. That works fine when the grid is not sorted by user. I use this code to know the row the user has selected:

index := cxMainTable.DataController.GetSelectedRowIndex(0);
cxMainTable.DataController.Values[index, 0];

But when the user sort the grid by clicking in a column header, the index returned is right for the current order displayed but the values the second line returns is the value that you would expect if the grid was not sorted.

Thanks.

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

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

发布评论

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

评论(1

伴我老 2024-07-26 17:44:52

您必须区分记录和行

也许 TableView.DataController.FocusedRecordIndex 就是您想要的?

You have to distinguish between records and rows.

Maybe TableView.DataController.FocusedRecordIndex is what you want?

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