
Hi,
I am adding a value to a field in Business Rule for the Case Entity as follows:
"1. Description\n\n2. Affected version / branches\n\n3. How easy is it to reproduce?";
It renders it in double quotes:
""1. Description\n\n2. Affected version / branches\n\n3. How easy is it to reproduce?";"
I also tried without quotes without success
I would like to see it in the field as follows:
1. Description
2. Affected version / branches
3. How easy is it to reproduce?
How can this be entered in the value field?
Thanks for your help.
Nick
I would switch to form scripting & try to set attribute value using JavaScript form onload.
Xrm.Page.getAttribute("fieldname").setValue("1. Description\n\n2. Affected version / branches\n\n3. How easy is it to reproduce?");
[View:https://social.microsoft.com/Forums/en-US/6d15aca3-f172-4ca4-9661-c4552775da28/crm-2011-inserting-new-line-in-multiple-lines-of-text-field-using-javascript?forum=crmdevelopment]