Mercurial > lada > lada-client
view app/controller/Map.js @ 678:a24db43b13b5
Set record dirty flag to false if commit failed.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Tue, 24 Mar 2015 10:44:36 +0100 |
parents | d21048cbdbb3 |
children | 6e28ebbe1a73 |
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.Map', { extend: 'Ext.app.Controller', requires: [ ], init: function() { this.control({ 'maptoolbar button[action=add]': { click: this.addLocation } }); this.callParent(arguments); }, addLocation: function(button) { var mapPanel = button.up('map'); var details = button.up('window').down('locationform'); var newLocation = Ext.create('Lada.model.Location'); details.setRecord(newLocation); details.setReadOnly(false); mapPanel.activateDraw(newLocation); } });