Mercurial > lada > lada-client
comparison app/controller/Messungen.js @ 193:93de61af9b9e
Renamed function names to Messungen
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Mon, 08 Jul 2013 14:25:45 +0200 |
parents | 062aa9001eb6 |
children | 5d72d74a2daf |
comparison
equal
deleted
inserted
replaced
192:d38b763806b0 | 193:93de61af9b9e |
---|---|
14 console.log('Initialising the Messungen controller'); | 14 console.log('Initialising the Messungen controller'); |
15 this.control({ | 15 this.control({ |
16 // CSS like selector to select element in the viewpzusatzwert. See | 16 // CSS like selector to select element in the viewpzusatzwert. See |
17 // ComponentQuery documentation for more details. | 17 // ComponentQuery documentation for more details. |
18 'messungenlist': { | 18 'messungenlist': { |
19 itemdblclick: this.editZusatzwert | 19 itemdblclick: this.editMessung |
20 }, | 20 }, |
21 'messungenlist toolbar button[action=add]': { | 21 'messungenlist toolbar button[action=add]': { |
22 click: this.addZusatzwert | 22 click: this.addMessung |
23 }, | 23 }, |
24 'messungenlist toolbar button[action=delete]': { | 24 'messungenlist toolbar button[action=delete]': { |
25 click: this.deleteZusatzwert | 25 click: this.deleteMessung |
26 }, | |
27 'messungencreate button[action=save]': { | |
28 click: this.saveMessung | |
26 }, | 29 }, |
27 'messungencreate form': { | 30 'messungencreate form': { |
28 savesuccess: this.createSuccess, | 31 savesuccess: this.createSuccess, |
29 savefailure: this.createFailure | 32 savefailure: this.createFailure |
30 }, | 33 }, |