LocalFilePanel.js 528 Bytes
Ext.define('treps.view.Steps.SourceSelection.LocalFilePanel' ,{
	extend: 'Ext.form.Panel',
	
	alias: 'widget.localfile_panel',
	
	requires: [
		'treps.view.Steps.SourceSelection.FileDropZone',
		'treps.view.Steps.SourceSelection.FileField'
	],

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

	layout: {
		type: 'hbox',
		padding: 5,
		margin: 5
	},
	
	items: [
		{
			xtype: 'filefield',
			flex: 1
		}
		,
		{
			xtype: 'filedropzone',
			height: '100%',
			flex: 1
		}
	]
});