[Lada-commits] [PATCH 7 of 7] Added probenzusatzwert controller
Wald Commits
scm-commit at wald.intevation.org
Fri Mar 6 17:05:19 CET 2015
# HG changeset patch
# User Raimund Renkert <raimund.renkert at intevation.de>
# Date 1425657961 -3600
# Node ID 98dee81664595ff2044f8dad83faaf689e94cc3f
# Parent 9a414a49dffeec23a78bec6ae95414c741c5525f
Added probenzusatzwert controller.
diff -r 9a414a49dffe -r 98dee8166459 app/controller/ProbenzusatzwertGrid.js
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/app/controller/ProbenzusatzwertGrid.js Fri Mar 06 17:06:01 2015 +0100
@@ -0,0 +1,57 @@
+/* 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.ProbenzusatzwertGrid', {
+ extend: 'Ext.app.Controller',
+
+ init: function() {
+ this.control({
+ 'probenzusatzwertgrid': {
+ edit: this.gridSave
+ },
+ 'probenzusatzwertgrid button[action=add]': {
+ click: this.add
+ },
+ 'probenzusatzwertgrid button[action=delete]': {
+ click: this.remove
+ }
+ });
+ },
+
+ gridSave: function(editor, context) {
+ context.record.save({
+ success: function() {
+ context.grid.store.reload();
+ context.grid.up('window').initData();
+ },
+ failure: function() {
+ // TODO
+ }
+ });
+ },
+
+ add: function() {
+ console.log('add');
+ },
+
+ remove: function(button) {
+ var grid = button.up('grid');
+ var selection = grid.getView().getSelectionModel().getSelection()[0];
+ Ext.MessageBox.confirm('Löschen', 'Sind Sie sicher?', function(btn) {
+ if (btn === 'yes') {
+ selection.destroy({
+ success: function() {
+ button.up('window').initData();
+ },
+ failure: function() {
+ }
+ });
+ }
+ });
+ }
+});
More information about the Lada-commits
mailing list