Mercurial > lada > lada-client
comparison app/controller/Zusatzwerte.js @ 172:cfa0cc437781
Implemented opening a new Messungen form when clicking and the "Add Button" on
the Messungen listing.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Wed, 03 Jul 2013 16:34:32 +0200 |
parents | 1fb79e16149f |
children | 6aaf43f881cd |
comparison
equal
deleted
inserted
replaced
171:c5422819d7b9 | 172:cfa0cc437781 |
---|---|
39 console.log('Saving Zusatzwert'); | 39 console.log('Saving Zusatzwert'); |
40 var form = button.up('window').down('form'); | 40 var form = button.up('window').down('form'); |
41 form.commit(); | 41 form.commit(); |
42 }, | 42 }, |
43 addZusatzwert: function(button) { | 43 addZusatzwert: function(button) { |
44 console.log('Adding new Zusatzwert for Probe' + button.probenId); | 44 console.log('Adding new Zusatzwert for Probe' + button.probeId); |
45 var zusatzwert = Ext.create('Lada.model.Zusatzwert'); | 45 var zusatzwert = Ext.create('Lada.model.Zusatzwert'); |
46 zusatzwert.set('probeId', button.probeId); | 46 zusatzwert.set('probeId', button.probeId); |
47 var view = Ext.widget('zusatzwertecreate', {model: zusatzwert}); | 47 var view = Ext.widget('zusatzwertecreate', {model: zusatzwert}); |
48 }, | 48 }, |
49 editZusatzwert: function(grid, record) { | 49 editZusatzwert: function(grid, record) { |