Mercurial > lada > lada-client
comparison app/view/proben/ImportForm.js @ 491:850ccfe5f3c4
Code style.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Fri, 31 Oct 2014 23:23:32 +0100 |
parents | debfcc7713e3 |
children | 7c0653e8d9f7 |
comparison
equal
deleted
inserted
replaced
490:446e99cfd425 | 491:850ccfe5f3c4 |
---|---|
10 * Formular to create a Probe | 10 * Formular to create a Probe |
11 */ | 11 */ |
12 Ext.define('Lada.view.proben.ImportForm', { | 12 Ext.define('Lada.view.proben.ImportForm', { |
13 extend: 'Ext.form.Panel', | 13 extend: 'Ext.form.Panel', |
14 initComponent: function() { | 14 initComponent: function() { |
15 this.items = [ | 15 this.items = [{ |
16 { | 16 xtype: 'fileuploadfield', |
17 xtype: 'fileuploadfield', | 17 title: 'Importdate' |
18 title: 'Importdate' | 18 }]; |
19 } | 19 this.callParent(arguments); |
20 ]; | |
21 this.callParent(); | |
22 } | 20 } |
23 }); | 21 }); |