comparison app/controller/Zusatzwerte.js @ 499:8b4ec61c5752

Removed most log messages to make the application less verbose.
author Raimund Renkert <raimund.renkert@intevation.de>
date Thu, 06 Nov 2014 11:12:21 +0100
parents 7c0653e8d9f7
children a12c9c97d3cb
comparison
equal deleted inserted replaced
498:c1b77fb96b01 499:8b4ec61c5752
15 stores: [ 15 stores: [
16 'Zusatzwerte' 16 'Zusatzwerte'
17 ], 17 ],
18 18
19 init: function() { 19 init: function() {
20 console.log('Initialising the Zusatzwerte controller');
21 this.callParent(arguments); 20 this.callParent(arguments);
22 }, 21 },
23 22
24 addListeners: function() { 23 addListeners: function() {
25 this.control({ 24 this.control({
45 } 44 }
46 }); 45 });
47 }, 46 },
48 47
49 saveItem: function(button) { 48 saveItem: function(button) {
50 console.log('Saving new Zusatzwert for Probe ' + button.probeId);
51 var form = button.up('window').down('form'); 49 var form = button.up('window').down('form');
52 form.commit(); 50 form.commit();
53 }, 51 },
54 52
55 addItem: function(button) { 53 addItem: function(button) {
56 console.log('Adding new Zusatzwert for Probe' + button.probeId);
57 var zusatzwert = Ext.create('Lada.model.Zusatzwert'); 54 var zusatzwert = Ext.create('Lada.model.Zusatzwert');
58 zusatzwert.set('probeId', button.probeId); 55 zusatzwert.set('probeId', button.probeId);
59 Ext.widget('zusatzwertecreate', { 56 Ext.widget('zusatzwertecreate', {
60 model: zusatzwert 57 model: zusatzwert
61 }); 58 });
62 }, 59 },
63 60
64 editItem: function(grid, record) { 61 editItem: function(grid, record) {
65 console.log('Editing Zusatzwert');
66 record.getAuthInfo(this.initEditWindow); 62 record.getAuthInfo(this.initEditWindow);
67 }, 63 },
68 64
69 initEditWindow: function(record, readonly) { 65 initEditWindow: function(record, readonly) {
70 var view = Ext.widget('zusatzwertecreate', { 66 var view = Ext.widget('zusatzwertecreate', {

http://lada.wald.intevation.org