Mercurial > lada > lada-client
view app/controller/grid/PKommentar.js @ 1293:16a80ca16732
map feature visibility, selection and grid layout
messpunkt layer is now visible per default when in editing mode
on selection in map, the form is updated
ortszuordnung buttons should not render over grid anymore
author | Maximilian Krambach <mkrambach@intevation.de> |
---|---|
date | Wed, 01 Feb 2017 19:38:06 +0100 |
parents | f4eb53ba63fc |
children |
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. */ /** * This is a controller for a grid of Pkommentare */ Ext.define('Lada.controller.grid.PKommentar', { extend: 'Ext.app.Controller', /** * Initialize the Controller with * 3 Listeners */ init: function() { this.control({ 'pkommentargrid': { edit: this.gridSave, canceledit: this.cancelEdit }, 'pkommentargrid button[action=add]': { click: this.add }, 'pkommentargrid button[action=delete]': { click: this.remove } }); }, /** * This function is called when the grids roweditor saves * the record. * On success it refreshes the windows which contains the grid * On failure it displays a message */ gridSave: function(editor, context) { context.record.set('datum', new Date()); context.record.save({ success: function() { context.grid.store.reload(); context.grid.up('window').initData(); }, failure: function(request, response) { var json = response.request.scope.reader.jsonData; if (json) { if (json.message){ Ext.Msg.alert(Lada.getApplication().bundle.getMsg('err.msg.save.title') +' #'+json.message, Lada.getApplication().bundle.getMsg(json.message)); } else { Ext.Msg.alert(Lada.getApplication().bundle.getMsg('err.msg.save.title'), Lada.getApplication().bundle.getMsg('err.msg.generic.body')); } } else { Ext.Msg.alert(Lada.getApplication().bundle.getMsg('err.msg.save.title'), Lada.getApplication().bundle.getMsg('err.msg.response.body')); } } }); }, /** * When the edit was canceled, * the empty row might have been created by the roweditor is removed */ cancelEdit: function(editor, context) { if (!context.record.get('id') || context.record.get('id') === '') { editor.getCmp().store.remove(context.record); } }, /** * This function adds a new row to add a PKommentar */ add: function(button) { var record = Ext.create('Lada.model.PKommentar'); record.data.datum = new Date(); record.set('probeId', button.up('pkommentargrid').recordId); button.up('pkommentargrid').store.insert(0, record); button.up('pkommentargrid').rowEditing.startEdit(0, 1); }, /** * A PKommentar-row can be removed from the grid with the remove * function. It asks the user for confirmation * If the removal was confirmed, it reloads the parent window on success, * on failure, an error message is shown. */ remove: function(button) { var grid = button.up('grid'); var selection = grid.getView().getSelectionModel().getSelection()[0]; Ext.MessageBox.confirm('Löschen', 'Sind Sie sicher?', function(btn) { if (btn === 'yes') { selection.destroy({ success: function() { button.up('window').initData(); }, failure: function(request, response) { var json = response.request.scope.reader.jsonData; if (json) { if (json.message){ Ext.Msg.alert(Lada.getApplication().bundle.getMsg('err.msg.delete.title') +' #'+json.message, Lada.getApplication().bundle.getMsg(json.message)); } else { Ext.Msg.alert(Lada.getApplication().bundle.getMsg('err.msg.delete.title'), Lada.getApplication().bundle.getMsg('err.msg.generic.body')); } } else { Ext.Msg.alert(Lada.getApplication().bundle.getMsg('err.msg.delete.title'), Lada.getApplication().bundle.getMsg('err.msg.response.body')); } } }); } }); grid.down('button[action=delete]').disable(); } });