FileDropZone.js 631 Bytes
Ext.define('treps.view.Steps.SourceSelection.FileDropZone' ,{
	extend: 'Ext.container.Container',

	controllers: ['Drop.FileDrop'],
	
	alias: 'widget.filedropzone',

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

	border: 1,

	style: {
		borderStyle: 'dashed'
	},

	html: 'Drop your file here',

	height: 100,
	
	ddGroup: 'sourcefileDDGroup',

	listeners:
        {
		afterrender: function()
		{
			var helpzone = this.getEl().down("div");

			Ext.create('Ext.panel.Tool',
				{
					type: 'help',
					cls:'treps-tool-help',
					renderTo: helpzone,
					pageId: 'dropzone'
			});
                }
        }
});