我有一个表,它为一个字段设置了关系,可以让我进行查找。在 validateWrite() 中,如果正在验证该字段,我将返回 true,这样它就不会引发任何错误。
Now I want to allow the user to add a "comma" and drop down again, selecting another (or same) value, however when selected it appends to the original value.
我尝试在 Modified() 方法中执行此操作,附加 this.Orig() 的文本,但是 this.Orig() 检索数据库中最后保存的记录,而不是当前值。
这方面的一个例子是查询选择窗口,它是一个标准的 Ax 表单并允许这样做。
那么这可能吗?