[Lada-commits] [PATCH 3 of 6] Added status grid and controller
Wald Commits
scm-commit at wald.intevation.org
Thu Mar 12 09:48:15 CET 2015
# HG changeset patch
# User Raimund Renkert <raimund.renkert at intevation.de>
# Date 1426149977 -3600
# Node ID 89b337cbfb5d78474757be518e587d37122d5046
# Parent 9b3adfb7b1aec2e4756bde70015fc08cf4dc23e1
Added status grid and controller.
diff -r 9b3adfb7b1ae -r 89b337cbfb5d app/controller/grid/Status.js
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/app/controller/grid/Status.js Thu Mar 12 09:46:17 2015 +0100
@@ -0,0 +1,63 @@
+/* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz
+ * Software engineering by Intevation GmbH
+ *
+ * This file is Free Software under the GNU GPL (v>=3)
+ * and comes with ABSOLUTELY NO WARRANTY! Check out
+ * the documentation coming with IMIS-Labordaten-Application for details.
+ */
+
+Ext.define('Lada.controller.grid.Status', {
+ extend: 'Ext.app.Controller',
+
+ init: function() {
+ this.control({
+ 'statusgrid': {
+ edit: this.gridSave
+ },
+ 'statusgrid button[action=add]': {
+ click: this.add
+ },
+ 'statusgrid button[action=delete]': {
+ click: this.remove
+ }
+ });
+ },
+
+ gridSave: function(editor, context) {
+ context.record.save({
+ success: function() {
+ context.grid.initData();
+ context.grid.up('window').initData();
+ },
+ failure: function() {
+ // TODO
+ }
+ });
+ },
+
+ add: function(button) {
+ var record = Ext.create('Lada.model.Status', {
+ messungsId: button.up('statusgrid').recordId
+ });
+ button.up('statusgrid').store.insert(0, record);
+ button.up('statusgrid').rowEditing.startEdit(0, 1);
+ },
+
+ remove: function(button) {
+ var grid = button.up('grid');
+ var selection = grid.getView().getSelectionModel().getSelection()[0];
+ Ext.MessageBox.confirm('Messwert löschen', 'Sind Sie sicher?', function(btn) {
+ if (btn === 'yes') {
+ selection.destroy({
+ success: function() {
+ button.up('window').initData();
+ grid.initData();
+ },
+ failure: function() {
+ // TODO
+ }
+ });
+ }
+ });
+ }
+});
diff -r 9b3adfb7b1ae -r 89b337cbfb5d app/view/grid/Status.js
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/app/view/grid/Status.js Thu Mar 12 09:46:17 2015 +0100
@@ -0,0 +1,128 @@
+/* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz
+ * Software engineering by Intevation GmbH
+ *
+ * This file is Free Software under the GNU GPL (v>=3)
+ * and comes with ABSOLUTELY NO WARRANTY! Check out
+ * the documentation coming with IMIS-Labordaten-Application for details.
+ */
+
+/*
+ * Grid to list Status
+ */
+Ext.define('Lada.view.grid.Status', {
+ extend: 'Ext.grid.Panel',
+ alias: 'widget.statusgrid',
+
+ maxHeight: 350,
+ emptyText: 'Keine Statusangaben gefunden.',
+ minHeight: 110,
+ viewConfig: {
+ deferEmptyText: false
+ },
+
+ recordId: null,
+
+ initComponent: function() {
+ this.rowEditing = Ext.create('Ext.grid.plugin.RowEditing', {
+ clicksToMoveEditor: 1,
+ autoCancel: false
+ });
+ this.plugins = [this.rowEditing];
+
+ var statusStore = Ext.create('Ext.data.Store', {
+ fields: ['display', 'id'],
+ data: [{
+ display: 'unbekannt', id: 0
+ }, {
+ display: 'nicht vergeben', id: 1
+ }, {
+ display: 'plausibel', id: 2
+ }, {
+ display: 'nicht repräsentativ', id: 3
+ }, {
+ display: 'nicht plausibel', id: 4
+ }]
+ });
+ this.dockedItems = [{
+ xtype: 'toolbar',
+ dock: 'bottom',
+ items: ['->', {
+ text: 'Hinzufügen',
+ icon: 'resources/img/list-add.png',
+ action: 'add',
+ probeId: this.probeId,
+ parentId: this.parentId
+ }, {
+ text: 'Löschen',
+ icon: 'resources/img/list-remove.png',
+ action: 'delete'
+ }]
+ }];
+ this.columns = [{
+ header: 'Erzeuger',
+ dataIndex: 'erzeuger',
+ renderer: function(value) {
+ if (!value || value === '') {
+ return '';
+ }
+ var mstore = Ext.data.StoreManager.get('messstellen');
+ return mstore.getById(value).get('messStelle');
+ },
+ editor: {
+ xtype: 'combobox',
+ store: Ext.data.StoreManager.get('messstellen'),
+ displayField: 'messStelle',
+ valueField: 'id',
+ allowBlank: false
+ }
+ }, {
+ header: 'Status',
+ dataIndex: 'status',
+ renderer: function(value) {
+ if (!value || value === '') {
+ return '';
+ }
+ return statusStore.getById(value).get('display');
+ },
+ editor: {
+ xtype: 'combobox',
+ store: statusStore,
+ displayField: 'display',
+ valueField: 'id',
+ allowBlank: false
+ }
+ }, {
+ header: 'Datum',
+ dataIndex: 'sdatum',
+ editor: {
+ xtype: 'datefield',
+ allowBlank: false,
+ format: 'd.m.Y',
+ maxValue: Ext.Date.format(new Date(), 'd.m.Y')
+ }
+ }, {
+ header: 'Text',
+ dataIndex: 'skommentar',
+ flex: 1,
+ editor: {
+ allowBlank: true
+ }
+ }];
+ this.initData();
+ this.callParent(arguments);
+ },
+
+ initData: function() {
+ if (this.store) {
+ this.store.removeAll();
+ }
+ else {
+ this.store = Ext.create('Lada.store.Status');
+ }
+ this.store.load({
+ params: {
+ messungsId: this.recordId
+ }
+ });
+ }
+});
More information about the Lada-commits
mailing list