diff app/view/messungen/Create.js @ 108:6c69bbb61c65

Added Forms to add Messungen
author Torsten Irländer <torsten.irlaender@intevation.de>
date Wed, 19 Jun 2013 14:09:53 +0200
parents
children cfa0cc437781
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/app/view/messungen/Create.js	Wed Jun 19 14:09:53 2013 +0200
@@ -0,0 +1,29 @@
+Ext.define('Lada.view.messungen.Create', {
+    extend: 'Ext.window.Window',
+    alias: 'widget.messungencreate',
+
+    title: 'Maske für Messungen',
+    // Make size of the dialog dependend of the available space.
+    // TODO: Handle resizing the browser window.
+    width: Ext.getBody().getViewSize().width - 30,
+    height: Ext.getBody().getViewSize().height - 30,
+    autoShow: true,
+    autoScroll: true,
+    modal: true,
+
+    requires: [
+        'Lada.view.messungen.CreateForm'
+    ],
+    initComponent: function() {
+        var form = Ext.create('Lada.view.messungen.CreateForm');
+        this.items = [form];
+        this.buttons = [
+            {
+                text: 'Speichern',
+                handler: form.commit,
+                scope: form
+            }
+        ];
+        this.callParent();
+    }
+});

http://lada.wald.intevation.org