Commit 42863f4213a730d77c211adfd0c01a61ddc62049
1 parent
46ac3264
Exists in
master
and in
110 other branches
collapseMode: "header", layout border, to avoid creation of additional placeholder header
Showing
13 changed files
with
28 additions
and
19 deletions
Show diff stats
js/app/controllers/ExplorerModule.js
js/app/views/CatalogUI.js
js/app/views/DownloadUI.js
js/app/views/FiltersUI.js
... | ... | @@ -1110,7 +1110,8 @@ Ext.define('amdaUI.FiltersUI', { |
1110 | 1110 | xtype: 'panel', |
1111 | 1111 | region: 'south', |
1112 | 1112 | title: 'Information', |
1113 | - collapsible: true, | |
1113 | + collapsible: true, | |
1114 | + collapseMode: 'header', | |
1114 | 1115 | height: 103, |
1115 | 1116 | autoHide: false, |
1116 | 1117 | iconCls: 'icon-information', |
... | ... |
js/app/views/MyDataUI.js
js/app/views/ParameterUI.js
js/app/views/PlotUI.js
js/app/views/SearchUI.js
js/app/views/StatisticsUI.js
js/app/views/TimeTableOperationUI.js
... | ... | @@ -6,10 +6,6 @@ |
6 | 6 | * @brief Time Table Operations Module UI definition (View) |
7 | 7 | * @author Myriam |
8 | 8 | * @version $Id: TimeTableOperationUI.js 1937 2013-11-27 14:42:41Z myriam $ |
9 | - ******************************************************************************** | |
10 | - * FT Id : Date : Name - Description | |
11 | - ******************************************************************************* | |
12 | - * 01/09/2011: Myriam - Migration extjs4 | |
13 | 9 | */ |
14 | 10 | |
15 | 11 | Ext.define('amdaUI.TimeTableOperationUI', { |
... | ... | @@ -286,19 +282,20 @@ Ext.define('amdaUI.TimeTableOperationUI', { |
286 | 282 | ] |
287 | 283 | }, |
288 | 284 | { |
289 | - xtype: 'panel', | |
290 | - title: 'Information', | |
291 | - region: 'south', | |
292 | - height: 100, | |
293 | - collapsible: true, | |
294 | - layout: 'fit', | |
295 | - autoHide: false, | |
296 | - iconCls: 'icon-information', | |
297 | - bodyStyle: 'padding:5px', | |
298 | - loader: { | |
299 | - autoLoad: true, | |
300 | - url: helpDir+'ttOperationsHOWTO' | |
301 | - } | |
285 | + xtype: 'panel', | |
286 | + title: 'Information', | |
287 | + region: 'south', | |
288 | + height: 100, | |
289 | + collapsible: true, | |
290 | + collapseMode: 'header', | |
291 | + layout: 'fit', | |
292 | + autoHide: false, | |
293 | + iconCls: 'icon-information', | |
294 | + bodyStyle: 'padding:5px', | |
295 | + loader: { | |
296 | + autoLoad: true, | |
297 | + url: helpDir+'ttOperationsHOWTO' | |
298 | + } | |
302 | 299 | } |
303 | 300 | ] |
304 | 301 | }; |
... | ... |
js/app/views/TimeTableUI.js
... | ... | @@ -743,7 +743,8 @@ Ext.define('amdaUI.TimeTableUI', { |
743 | 743 | { |
744 | 744 | xtype: 'panel', region: 'south', |
745 | 745 | title: 'Information', |
746 | - collapsible: true, | |
746 | + collapsible: true, | |
747 | + collapseMode: 'header', | |
747 | 748 | height: 100, |
748 | 749 | autoHide: false, |
749 | 750 | iconCls: 'icon-information', |
... | ... |
js/app/views/UploadUI.js
js/app/views/VisuUI.js