diff app/view/orte/List.js @ 94:21c069e2ecdb

Added Orte to the Proben edit window
author Torsten Irländer <torsten.irlaender@intevation.de>
date Thu, 13 Jun 2013 14:24:18 +0200
parents
children 453985cacb39
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/app/view/orte/List.js	Thu Jun 13 14:24:18 2013 +0200
@@ -0,0 +1,43 @@
+Ext.define('Lada.view.orte.List' ,{
+    extend: 'Ext.grid.Panel',
+    alias: 'widget.ortelist',
+    store: 'Orte',
+    viewConfig: {
+        maxHeight: 350,
+        emptyText: 'Keine Orte gefunden.',
+        // minHeight and deferEmptyText are needed to be able to show the
+        // emptyText message.
+        minHeight: 35,
+        deferEmptyText: false
+    },
+    initComponent: function() {
+        this.dockedItems = [
+            {
+                xtype: 'toolbar',
+                dock: 'top',
+                items: [
+                    {
+                        text: 'Hinzufügen',
+                        icon: 'gfx/plus.gif',
+                        action: 'add'
+                    },
+                    {
+                        text: 'Löschen',
+                        icon: 'gfx/minus.gif',
+                        action: 'delete'
+                    }
+                ]
+            }
+        ];
+        this.columns = [
+            {header: 'Typ', dataIndex: 'otyp'},
+            {header: 'ID', dataIndex: 'ortId'},
+            {header: 'Staat', dataIndex: ''},
+            {header: 'Gem-ID', dataIndex: ''},
+            {header: 'Gemeindebezeichnung', dataIndex: 'bezeichnung'},
+            {header: 'Messpunkt', dataIndex: ''}
+        ];
+        this.callParent(arguments);
+    }
+});
+

http://lada.wald.intevation.org