Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 ReportRun AX 中将属性设置为“RunOn”到 Server 时,对话框中的所有 Dialogfields 都会丢失值。
请问有什么想法吗?
似乎您没有在packandunpack方法中保存/取消保存所有对话框字段。这些方法用于将值从服务器传递到客户端(并返回)以在对话框中使用。
pack
unpack
一个简单的解决方法可能是添加方法:
protected boolean canSwapBetweenCS() { return false; }
这将使对话框使用较慢的客户端/服务器通信。