Mercurial > lada > lada-client
comparison app/controller/Zusatzwerte.js @ 137:a7eea094d3d6
Removed id property from Zusatzwerte model. Do not set Probenzusatz when
saving the Zusatzwert.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Wed, 26 Jun 2013 10:23:55 +0200 |
parents | 04439f3feba3 |
children | 1fb79e16149f |
comparison
equal
deleted
inserted
replaced
136:4dc84682110d | 137:a7eea094d3d6 |
---|---|
35 }); | 35 }); |
36 }, | 36 }, |
37 saveZusatzwert: function(button) { | 37 saveZusatzwert: function(button) { |
38 console.log('Saving Zusatzwert'); | 38 console.log('Saving Zusatzwert'); |
39 var form = button.up('window').down('form'); | 39 var form = button.up('window').down('form'); |
40 var values = form.getForm().getValues(); | |
41 var model = form.model; | |
42 // Set Probenzusatzwert and rebind the model to the form. | |
43 var xxx = this.getProbenzusatzwerteStore(); | |
44 var probenzusatz = xxx.getAt(xxx.find('pzsId', values.pzsId)); | |
45 model.setProbenzusatz(probenzusatz); | |
46 form.commit(); | 40 form.commit(); |
47 }, | 41 }, |
48 addZusatzwert: function(button) { | 42 addZusatzwert: function(button) { |
49 console.log('Adding new Zusatzwert for Probe' + button.probenId); | 43 console.log('Adding new Zusatzwert for Probe' + button.probenId); |
50 var zusatzwert = Ext.create('Lada.model.Zusatzwert'); | 44 var zusatzwert = Ext.create('Lada.model.Zusatzwert'); |