diff app/view/About.js @ 386:00bf2d4f3bd1

Added about dialog.
author Torsten Irländer <torsten.irlaender@intevation.de>
date Fri, 30 Aug 2013 11:11:00 +0200
parents
children 6952e5dc9861
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/app/view/About.js	Fri Aug 30 11:11:00 2013 +0200
@@ -0,0 +1,33 @@
+/*
+ * Window to edit a Probe
+ */
+Ext.define('Lada.view.About', {
+    extend: 'Ext.window.Window',
+    alias: 'widget.about',
+
+    title: 'Lada Information',
+    // 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,
+
+    initComponent: function() {
+        var sver = "tests"
+        var cver = "testc"
+        this.buttons = [
+            {
+                text: 'Abbrechen',
+                scope: this,
+                handler: this.close,
+            }
+        ];
+        this.items = [ 
+            { html: "<h1>Lada</h1>Server version: " + sver + "<br>Client version: " + cver }
+        ];
+        this.callParent();
+    },
+});
+

http://lada.wald.intevation.org