changeset 537:a12c9c97d3cb

Make tables editable for 'Zusatzwerte' See LSB 3.5
author Roland Geider <roland.geider@intevation.de>
date Wed, 17 Dec 2014 15:41:35 +0100
parents fbe81214026a
children eef1ff9f2bd2
files app/controller/Zusatzwerte.js app/view/zusatzwerte/List.js
diffstat 2 files changed, 26 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/app/controller/Zusatzwerte.js	Wed Dec 17 15:34:04 2014 +0100
+++ b/app/controller/Zusatzwerte.js	Wed Dec 17 15:41:35 2014 +0100
@@ -22,9 +22,9 @@
 
     addListeners: function() {
         this.control({
-            'zusatzwertelist': {
-                itemdblclick: this.editItem
-            },
+            //'zusatzwertelist': {
+            //    itemdblclick: this.editItem
+            //},
             'zusatzwertelist toolbar button[action=add]': {
                 click: this.addItem
             },
--- a/app/view/zusatzwerte/List.js	Wed Dec 17 15:34:04 2014 +0100
+++ b/app/view/zusatzwerte/List.js	Wed Dec 17 15:41:35 2014 +0100
@@ -26,6 +26,11 @@
     probeId: null,
 
     initComponent: function() {
+        var rowEditing = Ext.create('Ext.grid.plugin.RowEditing', {
+            clicksToMoveEditor: 1,
+            autoCancel: false
+        });
+        this.plugins = [rowEditing];
         this.dockedItems = [{
             xtype: 'toolbar',
             dock: 'bottom',
@@ -42,7 +47,11 @@
         }];
         this.columns = [{
             header: 'PZW-ID',
-            dataIndex: 'id'
+            dataIndex: 'id',
+            editor: {
+                xtype: 'numberfield',
+                allowBlank: false
+            }
         }, {
             header: 'PZW-Größe',
             dataIndex: 'pzsId',
@@ -51,7 +60,10 @@
                 var record = store.getById(value);
                 return record.get('beschreibung');
             },
-            flex: 1
+            flex: 1,
+            editor: {
+                xtype: 'probenzusatzwert'
+            }
         }, {
             header: 'Messwert',
             dataIndex: 'id',
@@ -67,7 +79,10 @@
             }
         }, {
             header: 'rel. Unsich.[%]',
-            dataIndex: 'messfehler'
+            dataIndex: 'messfehler',
+            editor: {
+                allowBlank: false
+            }
         }, {
             header: 'Maßeinheit',
             dataIndex: 'pzsId',
@@ -77,7 +92,11 @@
                 var mehId = zstore.getById(value).get('mehId');
                 var record = mstore.findRecord('id', mehId);
                 return record.get('einheit');
-            }
+            }/*,
+            editor: {
+                xtype: 'messeinheit',
+                allowBlank: false
+            }*/
         }];
         this.callParent(arguments);
     }

http://lada.wald.intevation.org