Blame view

ihm/app/view/Steps/TransformationDefinition/TransformationDefinitionPanel.js 693 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
Ext.define('treps.view.Steps.TransformationDefinition.TransformationDefinitionPanel' ,{
	extend: 'Ext.form.Panel',
	
	alias: 'widget.transformationdefinition_panel',
	
	requires: [
		'treps.view.Steps.TransformationDefinition.FramesPanel',
		'treps.view.Steps.TransformationDefinition.DataSelectContainer'
	],
	
	initComponent: function() {
		this.callParent(arguments);
	},

	tools: [
		{
			type: 'help',
			pageId: 'transdef'
		}
	],

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

	items: [
		{
			xtype: 'frames_panel',
			height: 75 
		},
		{
			xtype: 'dataselect_container',
			flex: 1
		}
	]
});