Mercurial > lada > lada-client
view app/controller/Zusatzwerte.js @ 490:446e99cfd425
Updated views and controllers using the new model and stores.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Fri, 31 Oct 2014 21:28:31 +0100 |
parents | debfcc7713e3 |
children | 850ccfe5f3c4 |
line wrap: on
line source
/* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz * Software engineering by Intevation GmbH * * This file is Free Software under the GNU GPL (v>=3) * and comes with ABSOLUTELY NO WARRANTY! Check out * the documentation coming with IMIS-Labordaten-Application for details. */ Ext.define('Lada.controller.Zusatzwerte', { extend: 'Lada.controller.Base', views: [ 'zusatzwerte.Create' ], stores: [ 'Zusatzwerte', 'StaProbenzusaetze', 'StaMesseinheiten' ], init: function() { console.log('Initialising the Zusatzwerte controller'); this.callParent(); }, addListeners: function() { this.control({ 'zusatzwertelist': { itemdblclick: this.editItem }, 'zusatzwertelist toolbar button[action=add]': { click: this.addItem }, 'zusatzwertelist toolbar button[action=delete]': { click: this.deleteItem }, 'zusatzwertecreate form': { savesuccess: this.createSuccess, savefailure: this.createFailure }, 'zusatzwertecreate button[action=save]': { click: this.saveItem }, 'zusatzwerteedit form': { savesuccess: this.editSuccess, savefailure: this.editFailure } }); }, saveItem: function(button) { console.log('Saving new Zusatzwert for Probe ' + button.probeId); var form = button.up('window').down('form'); form.commit(); }, addItem: function(button) { console.log('Adding new Zusatzwert for Probe' + button.probeId); var zusatzwert = Ext.create('Lada.model.Zusatzwert'); zusatzwert.set('probeId', button.probeId); var view = Ext.widget('zusatzwertecreate', {model: zusatzwert}); }, editItem: function(grid, record) { console.log('Editing Zusatzwert'); record.getAuthInfo(this.initEditWindow) console.log("Loaded Zusatzwert with ID " + record.getId()); //outputs ID }, initEditWindow: function(record, readonly, owner) { var view = Ext.widget('zusatzwertecreate', {model: record}); // Mark PZW Selection readonly. view.down('probenzusatzwert').disabled = true; var ignore = Array(); if (readonly) { var form = view.down('form'); form.setReadOnly(true, ignore); } }, createSuccess: function(form, record, operation) { // Reload store var store = this.getZusatzwerteStore(); store.reload(); var win = form.up('window'); win.close(); }, editSuccess: function(form, record, operation) { // Reload store var store = this.getZusatzwerteStore(); store.reload(); var win = form.up('window'); win.close(); } });