Mercurial > lada > lada-client
changeset 560:98dee8166459
Added probenzusatzwert controller.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Fri, 06 Mar 2015 17:06:01 +0100 |
parents | 9a414a49dffe |
children | ea2c35cd9c19 |
files | app/controller/ProbenzusatzwertGrid.js |
diffstat | 1 files changed, 57 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /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() { + } + }); + } + }); + } +});