From 56fe290981cbe9684fba63b87714f5809c3af020 Mon Sep 17 00:00:00 2001 From: jennylee Date: Fri, 26 Oct 2012 10:46:42 -0400 Subject: [PATCH] BUG-9952 Checkbox on Case Notes in simplified interface. I added a checkbox on Case Note in simplified interface, change made in file: 'workflow/engine/templates/home/appList.html'. --- workflow/engine/templates/home/appList.html | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/workflow/engine/templates/home/appList.html b/workflow/engine/templates/home/appList.html index 95c88e871..a99cf19d7 100644 --- a/workflow/engine/templates/home/appList.html +++ b/workflow/engine/templates/home/appList.html @@ -22,7 +22,6 @@ color : #808080; /*font : normal 8pt sans-serif,Tahoma,MiscFixed;*/ background-color:#ECECEC; - } #note_text { @@ -64,14 +63,18 @@ $('textarea#note_text').val(''); $( "#dialog-add-note" ).dialog({ resizable: false, - height:178, + height:192, modal: true, buttons: { "Add Note": function() { + var sendMail = document.getElementById('chkSendMail').checked; + sendMail = (sendMail == true) ? '1' : '0'; $(this).dialog("close"); $.post( '../appProxy/postNote', - {appUid: appUid, noteText: $('textarea#note_text').val()}, + {appUid : appUid, + noteText: $('textarea#note_text').val(), + swSendMail : sendMail}, function(responseText) { updateNt(appUid); } @@ -167,6 +170,10 @@

+

+ + +