Delphi QuantumGrid 排序后 GetSelectedRowIndex
我有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须区分记录和行。
也许
TableView.DataController.FocusedRecordIndex
就是您想要的?You have to distinguish between records and rows.
Maybe
TableView.DataController.FocusedRecordIndex
is what you want?