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.
我想通过外部资源而不是通过 GUI 事件工具来监听事件。
就像是:
entity.onSave(myFunc)
可能吗?
您可以通过此调用添加 onSave 事件处理程序:
Xrm.Page.data.entity.addOnSave(myFunc)
当然,您仍然需要从 OnLoad 调用此代码来连接它。
您也可以对属性执行 onChange 事件
Xrm.Page.getAttribute(controlName).addOnChange(onChange)