Column "Current User" removed from the "Participated list" due to performance reason.

Improvement to the case summary information
This commit is contained in:
Julio Cesar Laura
2012-11-09 15:43:32 -04:00
parent 0751ff554b
commit d390bee40e
4 changed files with 34 additions and 8 deletions

View File

@@ -390,7 +390,7 @@ function statusBarMessage( msg, isLoading, success ) {
/* Case Notes - End */
/* Case Summary - Start */
var openSummaryWindow = function(appUid, delIndex)
var openSummaryWindow = function(appUid, delIndex, action)
{
if (summaryWindowOpened) {
return;
@@ -400,12 +400,13 @@ var openSummaryWindow = function(appUid, delIndex)
url : '../appProxy/requestOpenSummary',
params : {
appUid : appUid,
delIndex: delIndex
delIndex: delIndex,
action: action
},
success: function (result, request) {
var response = Ext.util.JSON.decode(result.responseText);
if (response.success) {
var sumaryInfPanel = PMExt.createInfoPanel('../appProxy/getSummary', {appUid: appUid, delIndex: delIndex});
var sumaryInfPanel = PMExt.createInfoPanel('../appProxy/getSummary', {appUid: appUid, delIndex: delIndex, action: action});
sumaryInfPanel.setTitle(_('ID_GENERATE_INFO'));
var summaryWindow = new Ext.Window({