Blame view

ihm/app/view/Steps/ExportDefinition/FileStructurePanel.js 587 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.ExportDefinition.FileStructurePanel' ,{
	extend: 'Ext.form.Panel',

	alias: 'widget.filestructure_panel',

	requires: [
		'treps.view.FileFormats.FileFormatsCombo',
		'treps.view.FileStructures.FileStructuresCombo'
	],

	title: 'Exported File Structure',

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

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

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

	items: [
		{
			xtype: 'fileformats_combo'
		},
		{
			xtype: 'filestructures_combo'
		}
	]
});