1

我是 CRM2011 的新手并且可以,但是我接到了一个我不知道如何解决的任务,并且在 Google 中没有找到任何答案。

我有 2 个实体。案例和注释(注释 - 系统实体)。备注与案例相关,并由表单上的区域表示,用户可以在其中添加备注。添加新注释后,我需要运行 JS。我该怎么做?我不能分配 onchange 事件,因为它是系统实体,我不能在那里修改任何东西,甚至选择 OnChange 事件。我无法在此注释的案例表单上设置事件处理程序。属性也被阻止。如果我发送事件处理程序 onchange 区域,其中没有嵌入属性。

有谁知道如何在将相关系统属性更改为表单时运行 JS?

谢谢

4

1 回答 1

2

I believe that, depending on the exact details of your task at hand, you might want to use a plugin instead. The downside is that you won't be using JavaScript but C# (if you haven't build a plugin before you're in for a treat). The upside is that you won't be using JavaScript but C#.

You might want to intercept the messages of Create on the entity Note or the message of Update on the entity Case.

Could you, please, elaborate on what is the goal?

于 2013-03-21T21:48:34.923 回答