如何获取动态 Ax 表的 moddedField 方法中的前一个字段值?
我希望能够在 table.modifiedField 方法中执行一些逻辑,将字段的先前值与新值进行比较。 如何获取之前的值?
I would like to be able to perform some logic in the table.modifiedField method which compares the previous value of a field to the new value. How do I get to the previous value?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过
this.orig()
方法可以获取任何修改之前的记录缓冲区。The record buffer as it was before any modifications is available through the
this.orig()
method.