Mercurial > lada > lada-client
changeset 182:23f74ae3bb87
Added missing files.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Thu, 04 Jul 2013 15:11:58 +0200 |
parents | 062aa9001eb6 |
children | ceb04286152a |
files | app/store/Messgroessen.js app/view/status/List.js |
diffstat | 2 files changed, 58 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /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' + } + } +});
--- /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); + } +}); +