cxGrid 最后一个字段上的新记录 Enter
我正在努力让 TcxGrid 每当用户在当前记录的最后一个字段上按 Enter 键时附加新记录,但是我没有找到任何可以帮助我实现此目的的属性。
我尝试使用以下代码设置网格视图(TcxGridDBTableView)的 OnKeyDown 事件,
if Key = VK_RETURN then
if PaymentViewBetragNetto.Focused then
PaymentView.DataController.AppendRecord;
但是由于某种原因代码没有执行...
任何有关如何在最后一个字段 OnEnter 事件上附加记录的想法将受到高度赞赏。
谢谢。
I'm struggling to make a TcxGrid to append a new record whenever the user presses Enter key on last field of the current record, however I didn't find any property that might help me achieve this.
I tried setting the OnKeyDown event of the grid view(TcxGridDBTableView), with the following code
if Key = VK_RETURN then
if PaymentViewBetragNetto.Focused then
PaymentView.DataController.AppendRecord;
however the code is not executed for some reason...
Any idea on how to append record on last field OnEnter event would be highly appreciated.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为什么不简单:
Why not simple:
解决这个问题的方法似乎是设置网格视图的 OnEditKeyDown/Up/Press 来处理此类功能,因此:
It seems that the way to solve this is to set the OnEditKeyDown/Up/Press of the grid view in order to handle this type of functionality, therefore: