Dear,
I had a Javascript function that was executed onLoad of the email form to prefill the body of the email with a customized text.
This was working perfectly since a long time. Today, I see that this is not working anymore ? Any ideas ?
Version of D365: Version 1710 (9.1.0.23470) online
My code:
console.log(body)
Xrm.Page.getAttribute("description").setValue('');
Xrm.Page.getAttribute("description").setValue(body);
console.log(Xrm.Page.getAttribute("description").getValue())
I can confirm that the first console output gives the expected body and that the last console output gives as well the expected output but nothing is visible in the editable body of the email.
I have the impression that there was an update to the body form of the email.
Do someone has the same issue? Do you see any workarounds ?
Thanks,
Henry