[Lada-commits] [PATCH 2 of 2] Added missing files
Wald Commits
scm-commit at wald.intevation.org
Thu Jul 4 15:12:55 CEST 2013
# HG changeset patch
# User Torsten Irländer <torsten.irlaender at intevation.de>
# Date 1372943518 -7200
# Node ID 23f74ae3bb8759d1bba88265113f80301ee0f7eb
# Parent 062aa9001eb64847c11723e5b790322271ff17a8
Added missing files.
diff -r 062aa9001eb6 -r 23f74ae3bb87 app/store/Messgroessen.js
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/app/store/Messgroessen.js Thu Jul 04 15:11:58 2013 +0200
@@ -0,0 +1,15 @@
+Ext.define('Lada.store.Messgroessen', {
+ extend: 'Ext.data.Store',
+ fields: ['messgroesseId', 'messgro0esse'],
+ autoLoad: true,
+ proxy: {
+ type: 'ajax',
+ api: {
+ read: 'server/rest/messgroesse'
+ },
+ reader: {
+ type: 'json',
+ root: 'data'
+ }
+ }
+});
diff -r 062aa9001eb6 -r 23f74ae3bb87 app/view/status/List.js
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/app/view/status/List.js Thu Jul 04 15:11:58 2013 +0200
@@ -0,0 +1,43 @@
+Ext.define('Lada.view.status.List' ,{
+ extend: 'Ext.grid.Panel',
+ alias: 'widget.statuslist',
+ store: 'Status',
+ viewConfig: {
+ maxHeight: 350,
+ emptyText: 'Keine Statusangaben gefunden.',
+ // minHeight and deferEmptyText are needed to be able to show the
+ // emptyText message.
+ minHeight: 35,
+ deferEmptyText: false
+ },
+ probeId: null,
+ initComponent: function() {
+ this.dockedItems = [
+ {
+ xtype: 'toolbar',
+ dock: 'top',
+ items: [
+ {
+ text: 'Hinzufügen',
+ icon: 'gfx/plus.gif',
+ action: 'add',
+ probeId: this.probeId
+ },
+ {
+ text: 'Löschen',
+ icon: 'gfx/minus.gif',
+ action: 'delete'
+ }
+ ]
+ }
+ ];
+ this.columns = [
+ {header: 'Erzeuger', dataIndex: 'erzeuger'},
+ {header: 'Status', dataIndex: 'status'},
+ {header: 'Datum', dataIndex: 'sdatum'},
+ {header: 'Text', dataIndex: 'stext', flex: 1}
+ ];
+ this.callParent(arguments);
+ }
+});
+
More information about the Lada-commits
mailing list