Fixed problem with abstract in Starcases

This commit is contained in:
Alvaro Campos
2011-03-03 15:41:02 +00:00
parent efdfecc7d3
commit 48c8701d6c

View File

@@ -187,7 +187,7 @@ Ext.onReady(function() {
fieldLabel: ' ', fieldLabel: ' ',
labelSeparator : '', labelSeparator : '',
labelStyle: 'font-color:white;', labelStyle: 'font-color:white;',
// height: 15,
ds: processNumbers, ds: processNumbers,
cm: new Ext.grid.ColumnModel([ cm: new Ext.grid.ColumnModel([
{id:'inbox',header: TRANSLATIONS.ID_INBOX, width:70, sortable: false, locked:true, dataIndex: 'CASES_COUNT_TO_DO'}, {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', //autoExpandColumn: 'company',
height: 45, height: 49,
width: 355, width: 355,
//title: TRANSLATIONS.ID_GENERAL_PROCESS_NUMBERS, // 'General Process Numbers', //title: TRANSLATIONS.ID_GENERAL_PROCESS_NUMBERS, // 'General Process Numbers',
border: true, border: true,
@@ -310,14 +310,14 @@ Ext.onReady(function() {
} }
}, ' ', ' ', { }, ' ', ' ', {
iconCls : 'icon-expand-all', iconCls : 'icon-expand-all',
tooltip : 'Expand All', tooltip : _('ID_EXPAND_ALL'), //'Expand All',
handler : function() { handler : function() {
Ext.getCmp("startCaseTreePanel").root.expand(true); Ext.getCmp("startCaseTreePanel").root.expand(true);
}, },
scope : this scope : this
}, '-', { }, '-', {
iconCls : 'icon-collapse-all', iconCls : 'icon-collapse-all',
tooltip : 'Collapse All', tooltip : _('ID_COLLAPSE_ALL'), //'Collapse All',
handler : function() { handler : function() {
Ext.getCmp("startCaseTreePanel").root.collapse(true); Ext.getCmp("startCaseTreePanel").root.collapse(true);
}, },