Mercurial > lada > lada-client
view app/controller/grid/Messung.js @ 661:04cf6b514e3e
Enforcing maxlength on Numberfield Messdauer
author | Dustin Demuth <dustin@intevation.de> |
---|---|
date | Thu, 19 Mar 2015 11:05:35 +0100 |
parents | 71e8b84d7829 |
children | e88381fb3bdb |
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. */ /* * Controller for a Messungengrid */ Ext.define('Lada.controller.grid.Messung', { extend: 'Ext.app.Controller', requires: [ 'Lada.view.window.MessungEdit' ], init: function() { this.control({ 'messunggrid': { itemdblclick: this.editItem }, 'messunggrid button[action=add]': { click: this.add }, 'messunggrid button[action=delete]': { click: this.remove } }); }, editItem: function(grid, record) { var win = Ext.create('Lada.view.window.MessungEdit', { record: record, grid: grid }); win.show(); win.initData(); }, add: function(button) { var probe = button.up('window').record; var win = Ext.create('Lada.view.window.MessungCreate', { record: probe, grid: button.up('messunggrid') }); win.show(); win.initData(); }, remove: function(button) { var grid = button.up('grid'); var selection = grid.getView().getSelectionModel().getSelection()[0]; Ext.MessageBox.confirm( 'Messung löschen', 'Sind Sie sicher?', function(btn) { if (btn === 'yes') { selection.destroy({ success: function() { button.up('window').initData(); }, failure: function() { } }); } } ); } });