From 48c8701d6cacaaad0b490d44a15d4c9fe36f1e11 Mon Sep 17 00:00:00 2001 From: Alvaro Campos Date: Thu, 3 Mar 2011 15:41:02 +0000 Subject: [PATCH] Fixed problem with abstract in Starcases --- workflow/engine/templates/cases/casesStartCase.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/workflow/engine/templates/cases/casesStartCase.js b/workflow/engine/templates/cases/casesStartCase.js index 3ad762b29..874f154cb 100644 --- a/workflow/engine/templates/cases/casesStartCase.js +++ b/workflow/engine/templates/cases/casesStartCase.js @@ -187,7 +187,7 @@ Ext.onReady(function() { fieldLabel: ' ', labelSeparator : '', labelStyle: 'font-color:white;', - + // height: 15, ds: processNumbers, cm: new Ext.grid.ColumnModel([ {id:'inbox',header: TRANSLATIONS.ID_INBOX, width:70, sortable: false, locked:true, dataIndex: 'CASES_COUNT_TO_DO'}, @@ -200,7 +200,7 @@ Ext.onReady(function() { , //autoExpandColumn: 'company', - height: 45, + height: 49, width: 355, //title: TRANSLATIONS.ID_GENERAL_PROCESS_NUMBERS, // 'General Process Numbers', border: true, @@ -310,14 +310,14 @@ Ext.onReady(function() { } }, ' ', ' ', { iconCls : 'icon-expand-all', - tooltip : 'Expand All', + tooltip : _('ID_EXPAND_ALL'), //'Expand All', handler : function() { Ext.getCmp("startCaseTreePanel").root.expand(true); }, scope : this }, '-', { iconCls : 'icon-collapse-all', - tooltip : 'Collapse All', + tooltip : _('ID_COLLAPSE_ALL'), //'Collapse All', handler : function() { Ext.getCmp("startCaseTreePanel").root.collapse(true); },