Blame view

ihm/app/view/Steps/TransformationDefinition/DataSelectContainer.js 849 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
Ext.define('treps.view.Steps.TransformationDefinition.DataSelectContainer' ,{
	extend: 'Ext.container.Container',

	alias: 'widget.dataselect_container',

	requires: [
		'treps.view.Data.Grid.DataGrid',
		'treps.view.Steps.TransformationDefinition.VecDefGrid',
		'treps.view.Times.TimesPanel'
	],

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

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

	items: [
		{
			xtype: 'data_grid',
			title: 'Source Data',
			flex: 3
		},
		{
			xtype: 'container',
			flex: 2,
			layout: {
				type: 'vbox',
				align: 'stretch',
				padding: '0 0 0 5'
			},
			items: [
				{
					xtype: 'times_panel',
					id : 'sourceTimeDefPanel',
					addcheckbox: true,
					flex: 1,
					minHeight: 110
				},
				{
					xtype: 'vecdef_grid',
					flex: 3
				}
			]
		}
	]
});