Mercurial > lada > lada-client
diff app/view/proben/EditForm.js @ 497:7c0653e8d9f7
Fixed some js related issues (unused vars, arrays, etc.) and code style.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Thu, 06 Nov 2014 10:38:17 +0100 |
parents | 850ccfe5f3c4 |
children | 369917727c86 |
line wrap: on
line diff
--- a/app/view/proben/EditForm.js Thu Nov 06 10:35:35 2014 +0100 +++ b/app/view/proben/EditForm.js Thu Nov 06 10:38:17 2014 +0100 @@ -3,7 +3,7 @@ * * This file is Free Software under the GNU GPL (v>=3) * and comes with ABSOLUTELY NO WARRANTY! Check out - * the documentation coming with IMIS-Labordaten-Application for details. + * the documentation coming with IMIS-Labordaten-Application for details. */ /* @@ -11,6 +11,7 @@ */ Ext.define('Lada.view.proben.EditForm', { extend: 'Lada.view.widgets.LadaForm', + alias: 'widget.probeneditform', requires: [ 'Lada.view.widgets.Datenbasis', 'Lada.view.widgets.Netzbetreiber', @@ -23,11 +24,11 @@ 'Lada.view.orte.List', 'Lada.view.messungen.List' ], + model: 'Lada.model.Probe', - alias: 'widget.probeneditform', initComponent: function() { - this.items = [{ + this.items = [{ xtype: 'fieldset', title: 'Probenangaben', defaults: { @@ -183,9 +184,11 @@ }, buildDescriptors: function() { - var fields = new Array(); - for ($i=0; $i<12; $i++) { - fields[$i] = {fieldLabel: 'S'+$i, name: 's'+$i}; + var fields = []; + for (var i = 0; i < 12; i++) { + fields[i] = { + fieldLabel: 'S' + i, name: 's' + i + }; } return fields; }