Mercurial > lada > lada-client
view app/controller/Proben.js @ 79:9eeddf6e40f7
Fixed fieldnaming.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Tue, 11 Jun 2013 09:57:45 +0200 |
parents | eb8a7d3cca89 |
children | eb40b74f871a |
line wrap: on
line source
Ext.define('Lada.controller.Proben', { extend: 'Ext.app.Controller', views: [ 'proben.List', 'proben.Edit', 'proben.Create' ], stores: [ 'Proben', 'Uwb', 'Datenbasis', 'Probenart', 'Betriebsart', 'Testdatensatz' ], models: [ 'Probe' ], init: function() { console.log('Initialising the Proben controller'); this.control({ // CSS like selector to select element in the viewport. See // ComponentQuery documentation for more details. 'probenlist': { itemdblclick: this.editProbe }, 'probenlist toolbar button[action=add]': { click: this.addProbe }, 'probencreate form': { savesuccess: this.createSuccess, savefailure: this.createFailure }, 'probenedit form': { savesuccess: this.editSuccess, savefailure: this.editFailure } }); }, addProbe: function(button) { console.log('Adding new Probe'); var view = Ext.widget('probencreate'); }, editProbe: function(grid, record) { console.log('Editing Probe'); var id = record.get('probeId'); var view = Ext.widget('probenedit', {modelId: id}); console.log("Loaded Probe with ID " + record.getId()); //outputs ID }, createSuccess: function(form, record, operation) { var win = form.up('window'); win.close(); }, createFailure: function(form, record, operation) { Ext.MessageBox.show({ title: 'Fehler beim Speichern', msg: form.message, icon: Ext.MessageBox.ERROR, buttons: Ext.Msg.OK }); }, editSuccess: function(form, record, operation) { var win = form.up('window'); win.close(); }, editFailure: function(form, record, operation) { Ext.MessageBox.show({ title: 'Fehler beim Speichern', msg: form.message, icon: Ext.MessageBox.ERROR, buttons: Ext.Msg.OK }); } });