Mercurial > lada > lada-client
comparison app/view/proben/ImportForm.js @ 357:94884cd8f8c0
Added logic to upload a file to the server.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Tue, 13 Aug 2013 16:21:08 +0200 |
parents | |
children | debfcc7713e3 |
comparison
equal
deleted
inserted
replaced
356:166203f7119d | 357:94884cd8f8c0 |
---|---|
1 /* | |
2 * Formular to create a Probe | |
3 */ | |
4 Ext.define('Lada.view.proben.ImportForm', { | |
5 extend: 'Ext.form.Panel', | |
6 initComponent: function() { | |
7 this.items = [ | |
8 { | |
9 xtype: 'fileuploadfield', | |
10 title: 'Importdate' | |
11 } | |
12 ]; | |
13 this.callParent(); | |
14 } | |
15 }); |