comparison 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
comparison
equal deleted inserted replaced
595:a81dafe06d1d 596:b0a3580a41e9
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.MKommentar', {
10 extend: 'Ext.app.Controller',
11
12 init: function() {
13 this.control({
14 'mkommentargrid': {
15 edit: this.edit
16 },
17 'mkommentargrid button[action=add]': {
18 click: this.add
19 },
20 'mkommentargrid button[action=delete]': {
21 click: this.remove
22 }
23 });
24 },
25
26 edit: function(editor, context) {
27 context.record.save({
28 success: function() {
29 context.grid.initData();
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.MKommentar');
40 record.set('messungsId', button.up('mkommentargrid').recordId);
41 button.up('mkommentargrid').store.insert(0, record);
42 button.up('mkommentargrid').rowEditing.startEdit(0, 1);
43 },
44
45 remove: function(button) {
46 var grid = button.up('grid');
47 var selection = grid.getView().getSelectionModel().getSelection()[0];
48 Ext.MessageBox.confirm('Löschen', 'Sind Sie sicher?', function(btn) {
49 if (btn === 'yes') {
50 selection.destroy({
51 success: function() {
52 button.up('window').initData();
53 },
54 failure: function() {
55 // TODO
56 }
57 });
58 }
59 });
60 }
61 });

http://lada.wald.intevation.org