Is this possible or is there a better approach to accomplish this?
I have a appending multiline field which I am using as a short ‘discussion’ method within a regular list record. I can show the history in the displayform but I would like to show it in the body of an email, all I get is the last entry in the field.
Is it possible to tweak the multiline trigger code below, from this thread, to write the latest entry AND the history to a regular text field?
var initialRteVal = getFieldValue("IncidentDiscussion").replace(/<[^>]*>/g,"");
jQuery("#dffs_IncidentDiscussion div.ms-rtestate-write").on("blur",function(){
var currVal = getFieldValue("IncidentDiscussion").replace(/<[^>]*>/g,"");
if(currVal !== initialRteVal){
spjs.dffs.triggerRule(["MultiLineTrigger"]);
}
});