[Lada-commits] [PATCH 5 of 6] Added messung kommentar grid and controller

Wald Commits scm-commit at wald.intevation.org
Thu Mar 12 09:48:17 CET 2015


# HG changeset patch
# User Raimund Renkert <raimund.renkert at intevation.de>
# Date 1426150116 -3600
# Node ID b0a3580a41e92ab678d22080985a4877060a1b38
# Parent  a81dafe06d1d18884cb961e1f2015bb09f75c9a2
Added messung kommentar grid and controller.

diff -r a81dafe06d1d -r b0a3580a41e9 app/controller/grid/MKommentar.js
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/app/controller/grid/MKommentar.js	Thu Mar 12 09:48:36 2015 +0100
@@ -0,0 +1,61 @@
+/* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz
+ * Software engineering by Intevation GmbH
+ *
+ * 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.
+ */
+
+Ext.define('Lada.controller.grid.MKommentar', {
+    extend: 'Ext.app.Controller',
+
+    init: function() {
+        this.control({
+            'mkommentargrid': {
+                edit: this.edit
+            },
+            'mkommentargrid button[action=add]': {
+                click: this.add
+            },
+            'mkommentargrid button[action=delete]': {
+                click: this.remove
+            }
+        });
+    },
+
+    edit: function(editor, context) {
+        context.record.save({
+            success: function() {
+                context.grid.initData();
+                context.grid.up('window').initData();
+            },
+            failure: function() {
+                // TODO
+            }
+        });
+    },
+
+    add: function(button) {
+        var record = Ext.create('Lada.model.MKommentar');
+        record.set('messungsId', button.up('mkommentargrid').recordId);
+        button.up('mkommentargrid').store.insert(0, record);
+        button.up('mkommentargrid').rowEditing.startEdit(0, 1);
+    },
+
+    remove: function(button) {
+        var grid = button.up('grid');
+        var selection = grid.getView().getSelectionModel().getSelection()[0];
+        Ext.MessageBox.confirm('Löschen', 'Sind Sie sicher?', function(btn) {
+            if (btn === 'yes') {
+                selection.destroy({
+                    success: function() {
+                        button.up('window').initData();
+                    },
+                    failure: function() {
+                        // TODO
+                    }
+                });
+            }
+        });
+    }
+});
diff -r a81dafe06d1d -r b0a3580a41e9 app/view/grid/MKommentar.js
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/app/view/grid/MKommentar.js	Thu Mar 12 09:48:36 2015 +0100
@@ -0,0 +1,95 @@
+/* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz
+ * Software engineering by Intevation GmbH
+ *
+ * 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.
+ */
+
+/*
+ * Grid to list Kommentare for Messunge
+ */
+Ext.define('Lada.view.grid.MKommentar', {
+    extend: 'Ext.grid.Panel',
+    alias: 'widget.mkommentargrid',
+
+    maxHeight: 350,
+    emptyText: 'Keine Kommentare gefunden.',
+    minHeight: 110,
+    viewConfig: {
+        deferEmptyText: false
+    },
+
+    recordId: null,
+
+    initComponent: function() {
+        this.rowEditing = Ext.create('Ext.grid.plugin.RowEditing', {
+            clicksToMoveEditor: 1,
+            autoCancel: false
+        });
+        this.plugins = [this.rowEditing];
+        this.dockedItems = [{
+            xtype: 'toolbar',
+            dock: 'bottom',
+            items: ['->', {
+                text: 'Hinzufügen',
+                icon: 'resources/img/list-add.png',
+                action: 'add'
+            }, {
+                text: 'Löschen',
+                icon: 'resources/img/list-remove.png',
+                action: 'delete'
+            }]
+        }];
+        this.columns = [{
+            header: 'Erzeuger',
+            dataIndex: 'erzeuger',
+            renderer: function(value) {
+                if (!value || value === '') {
+                    return '';
+                }
+                var mstore = Ext.data.StoreManager.get('messstellen');
+                return mstore.getById(value).get('messStelle');
+            },
+            editor: {
+                xtype: 'combobox',
+                store: Ext.data.StoreManager.get('messstellen'),
+                displayField: 'messStelle',
+                valueField: 'id',
+                allowBlank: false
+            }
+        }, {
+            header: 'Datum',
+            dataIndex: 'datum',
+            editor: {
+                xtype: 'datefield',
+                allowBlank: false,
+                format: 'd.m.Y',
+                maxValue: Ext.Date.format(new Date(), 'd.m.Y')
+            }
+        }, {
+            header: 'Text',
+            dataIndex: 'text',
+            flex: 1,
+            editor: {
+                allowBlank: false
+            }
+        }];
+        this.initData();
+        this.callParent(arguments);
+    },
+
+    initData: function() {
+        if (this.store) {
+            this.store.removeAll();
+        }
+        else {
+            this.store = Ext.create('Lada.store.MKommentare');
+        }
+        this.store.load({
+            params: {
+                messungsId: this.recordId
+            }
+        });
+    }
+});


More information about the Lada-commits mailing list