Mercurial > lada > lada-client
comparison app/controller/grid/Probenzusatzwert.js @ 587:cf328526b5bb
Moved controller into subfolders.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Wed, 11 Mar 2015 13:39:04 +0100 |
parents | |
children | 8acb3123b46c |
comparison
equal
deleted
inserted
replaced
586:a9268f5cde26 | 587:cf328526b5bb |
---|---|
1 /* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz | |
2 * Software engineering by Intevation GmbH | |
3 * | |
4 * This file is Free Software under the GNU GPL (v>=3) | |
5 * and comes with ABSOLUTELY NO WARRANTY! Check out | |
6 * the documentation coming with IMIS-Labordaten-Application for details. | |
7 */ | |
8 | |
9 Ext.define('Lada.controller.grid.Probenzusatzwert', { | |
10 extend: 'Ext.app.Controller', | |
11 | |
12 init: function() { | |
13 this.control({ | |
14 'probenzusatzwertgrid': { | |
15 edit: this.gridSave | |
16 }, | |
17 'probenzusatzwertgrid button[action=add]': { | |
18 click: this.add | |
19 }, | |
20 'probenzusatzwertgrid button[action=delete]': { | |
21 click: this.remove | |
22 } | |
23 }); | |
24 }, | |
25 | |
26 gridSave: function(editor, context) { | |
27 context.record.save({ | |
28 success: function() { | |
29 context.grid.store.reload(); | |
30 context.grid.up('window').initData(); | |
31 }, | |
32 failure: function() { | |
33 // TODO | |
34 } | |
35 }); | |
36 }, | |
37 | |
38 add: function(button) { | |
39 var record = Ext.create('Lada.model.Zusatzwert', { | |
40 probeId: button.up('probenzusatzwertgrid').recordId | |
41 }); | |
42 button.up('probenzusatzwertgrid').store.insert(0, record); | |
43 button.up('probenzusatzwertgrid').rowEditing.startEdit(0, 1); | |
44 }, | |
45 | |
46 remove: function(button) { | |
47 var grid = button.up('grid'); | |
48 var selection = grid.getView().getSelectionModel().getSelection()[0]; | |
49 Ext.MessageBox.confirm('Zusatzwert löschen', 'Sind Sie sicher?', function(btn) { | |
50 if (btn === 'yes') { | |
51 selection.destroy({ | |
52 success: function() { | |
53 button.up('window').initData(); | |
54 grid.initData(); | |
55 }, | |
56 failure: function() { | |
57 // TODO | |
58 } | |
59 }); | |
60 } | |
61 }); | |
62 } | |
63 }); |