Mercurial > lada > lada-client
diff app/controller/grid/MKommentar.js @ 596:b0a3580a41e9
Added messung kommentar grid and controller.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Thu, 12 Mar 2015 09:48:36 +0100 |
parents | |
children | 8acb3123b46c |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/app/controller/grid/MKommentar.js Thu Mar 12 09:48:36 2015 +0100 @@ -0,0 +1,61 @@ +/* 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.MKommentar', { + extend: 'Ext.app.Controller', + + init: function() { + this.control({ + 'mkommentargrid': { + edit: this.edit + }, + 'mkommentargrid button[action=add]': { + click: this.add + }, + 'mkommentargrid button[action=delete]': { + click: this.remove + } + }); + }, + + edit: 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.MKommentar'); + record.set('messungsId', button.up('mkommentargrid').recordId); + button.up('mkommentargrid').store.insert(0, record); + button.up('mkommentargrid').rowEditing.startEdit(0, 1); + }, + + 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() { + // TODO + } + }); + } + }); + } +});