Hi John,
Do you have the Rich Text Widget on a page? Any additional info you can provide about why you can't edit this field would be helpful.
Thanks,
Mike
Mike: thanks for reply...the text area in question is a rich text widget, yes. The string that is populating it is in HTML but it appears w/o the HTML tags in the modal dialog. I can, in fact, go in to it and make edits but they do not carry over in the payload at the graph API call.
Below is a screenshot of the text that appear in the delivered message (as it is appears in outlook calendar invite). And below that is the actual string that populates the pop up text area which ultimately becomes the calendar message body. Hope this helps, thanks again.
'<b> I know you have agreed to certain compliance terms, but I’d like to emphasize that we do not want you to share any confidential information or material non public information about any company.</b><br><br>[If the source is a former of TARGET COMPANY, add: This includes any information you may have heard from colleagues still at TARGET COMPANY.]<br><br>'+(if(trim($ContactCall/CallLogging.ContactCall_Contact/Contacts.Contact/LinkedIn) !='') then $ContactCall/CallLogging.ContactCall_Contact/Contacts.Contact/LinkedIn else 'LinkedIn-ID is empty')+'<br><br>'+$ContactCall/CallLogging.ContactCall_Contact/Contacts.Contact/Rate+'/hour'+' - Waiting on compliance execution- NOT READY for call <br><br>Text to Analyst describing the background <br><div style=margin-bottom: 20px;></div>
<b>First name'+' :'+'</b>'+(if(trim($Contact/FirstName) !='') then $Contact/FirstName else ' - First name is empty')+'<br><br>
<b>Last name'+' :'+'</b>'+(if(trim($Contact/LastName) != '') then $Contact/LastName else 'Last name is empty')+'<br><br>
<b>Goes by'+' :'+'</b>'+(if(trim($Contact/GoesBy) != '') then $Contact/GoesBy else 'Goes by is empty')+'<br><br>
<b>Email'+' :'+'</b>'+(if(trim($Email) != '') then $Email else 'Email is empty')+'<br><br>
<b>Phone'+' :'+'</b>'+(if(trim($PhoneNumber) != '') then $PhoneNumber else 'Number is empty')+'<br><br>
<b>Relevant background'+' :'+'</b>'+(if(trim($Contact/RelevantBackground) != '') then $Contact/RelevantBackground else 'Relevant Background is empty')+'<br><br>
<b>Current company'+' :'+'</b>'+(if(trim($Contact/CurrentCompany) != '') then $Contact/CurrentCompany else 'Current company is empty')+'<br><br>
<b>Previous company'+' :'+'</b>'+(if(trim($Contact/PreviousCompany) != '') then $Contact/PreviousCompany else 'Previous company is empty')+'<br><br>
<b>Current title'+' :'+'</b>'+(if(trim($Contact/CurrentTitle) != '') then $Contact/CurrentTitle else 'Current title is empty')+'<br><br>
<b>Previous title'+' :'+'</b>'+(if(trim($Contact/PreviousTitle) != '') then $Contact/PreviousTitle else 'Previous Title is empty')+'<br><br>
<b>Current company type'+' :'+'</b>'+(if(toString($Contact/CompanyType) != empty and toString($Contact/CompanyType) != '') then toString($Contact/CompanyType) else 'Current company type is empty')+'<br><br>
<b>Previous company type'+' :'+'</b>'+(if(toString($Contact/PreviousCompanyType) != empty and toString($Contact/PreviousCompanyType) != '') then toString($Contact/PreviousCompanyType) else 'Previous company type is empty')+'<br><br>
<b>Date current employment began'+' :'+'</b>'+(if(toString($Contact/DateCurrentEmploymentBegan) != empty and toString($Contact/DateCurrentEmploymentBegan) != '') then toString($Contact/DateCurrentEmploymentBegan) else 'Current employment began date is empty')+'<br><br>
<b>Date previous employment began'+':'+'</b>'+(if(toString($Contact/DatePreviousEmploymentBegan) != empty and toString($Contact/DatePreviousEmploymentBegan) != '') then toString($Contact/DatePreviousEmploymentBegan) else 'Previous employment began date is empty')+'<br><br>
<b>Date previous employment ended'+':'+'</b>'+(if(toString($Contact/DatePreviousEmploymentEnd) != empty and toString($Contact/DatePreviousEmploymentEnd) != '') then toString($Contact/DatePreviousEmploymentEnd) else 'Previous employment ended date is empty')+'<br><br>
<b>Rate'+' :'+'</b>'+(if(toString($Contact/Rate) != empty and toString($Contact/Rate) != '') then toString($Contact/Rate) else 'Rate is empty')+'<br><br>
<b>Rate currency'+' :'+'</b>'+(if(toString($Contact/RateCurrency) != empty and toString($Contact/RateCurrency) != '') then toString($Contact/RateCurrency) else 'Currency is empty')
I am going to say no. Variable is passed directly to the request section of the REST call.