FileDropZone.js
631 Bytes
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.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'
});
}
}
});