adding js that gets the current event notes before adding the declined message to the notes
body so that the value and not just the text of the textarea can be set.
if(reason_text){
$("#deniedReason").dialog("close");
- notes.append(" DENIED REASON: " + reason_text)
+ var content = " DENIED REASON: " + reason_text;
+ var current_notes = notes.val();
+ notes.append(" DENIED REASON: " + reason_text);
+ notes.val(current_notes + content);
$('#declinedMsg').val(reason_text);
} else {
reason.next().css("display", "block");