Mercurial > lada > lada-client
view app/controller/grid/Messmethode.js @ 765:62721a75d31d
A draft on how the Nuklide could be selected... maybe this path can be used
author | Dustin Demuth <dustin@intevation.de> |
---|---|
date | Fri, 08 May 2015 16:12:01 +0200 |
parents | ba8c0e754979 |
children | 31eaed998531 |
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 Messmethode */ Ext.define('Lada.controller.grid.Messmethode', { extend: 'Ext.app.Controller', /** * Inhitialize the controller * It has 3 listeners */ init: function() { this.control({ 'messmethodengrid': { edit: this.gridSave, canceledit: this.cancelEdit, select: this.selectRow }, 'messmethodengrid button[action=add]': { click: this.add }, 'messmethodengrid 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) { console.log(context); context.record.save({ success: function() { context.grid.initData(); 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); } }, /** * When a row is selected, * the nuklid-grid will be updated * to display the nuklide which are possible for this * Messmethod */ selectRow: function(row, record, index) { var ngrid = row.view.up('window').down('nuklidegrid'); var nuklide = record.get('messgroessen'); var store = Ext.data.StoreManager.get('messgroessen'); if (!store) { store = Ext.create('Lada.store.Messgroessen'); } //get selection model var selectedRecords = []; //iterate store and slecet all records which are in nuklide array store.each(function(record){ //TODO if(record.get('id') in nuklide){ selectedRecords.push(record); //TODO} }); ngrid.setData(store); var selModel = ngrid.getSelectionModel(); console.log(selModel); selModel.select(selectedRecords, false, false); }, /** * This function adds a new row */ add: function(button) { var record = Ext.create('Lada.model.MmtMessprogramm'); record.set('messprogrammId', button.up('messmethodengrid').recordId); button.up('messmethodengrid').store.insert(0, record); button.up('messmethodengrid').rowEditing.startEdit(0, 0); }, /** * A 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'); //TODO i18n 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')); } } }); } }); } });