Blame view

ihm/app/view/Steps/SourceSelection/ManualDataPanel.js 317 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
Ext.define('treps.view.Steps.SourceSelection.ManualDataPanel' ,{
	extend: 'Ext.form.Panel',

	alias: 'widget.manualdata_panel',

	requires: [
		'treps.view.Data.Edit.EditDataGrid'
	],

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

	layout: 'fit',

	items: [
		{
			xtype: 'editdata_grid'
		}
	]
});