Blame view

ihm/app/view/Steps/ExportDefinition/ExportContainer.js 537 Bytes
346b85c6   Benjamin Renard   First commit with...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Ext.define('treps.view.Steps.ExportDefinition.ExportContainer' ,{
	extend: 'Ext.container.Container',

	alias: 'widget.export_container',

	requires: [
		'treps.view.Times.TimesPanel',
		'treps.view.Steps.ExportDefinition.FileStructurePanel'
	],

	initComponent: function() {
		this.callParent(arguments);
	},

	layout: {
		type: 'vbox',
		padding: 5,
		margin: 5,
		align: 'stretch'
	},

	items: [
		{
			xtype: 'times_panel',
			title: 'Exported Time Format',
			flex: 1
		},
		{
			xtype: 'filestructure_panel',
			flex: 1
		}
	]
});