annotate app/view/window/MessungCreate.js @ 875:13c0e64e1873

Applied Patch which was presented in the Workshop: Title of a Messung-Window contains more details
author Dustin Demuth <dustin@intevation.de>
date Fri, 17 Jul 2015 15:10:30 +0200
parents 6f6d2df00130
children def27cdd0dfa
rev   line source
621
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
1 /* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
2 * Software engineering by Intevation GmbH
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
3 *
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
4 * This file is Free Software under the GNU GPL (v>=3)
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
5 * and comes with ABSOLUTELY NO WARRANTY! Check out
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
6 * the documentation coming with IMIS-Labordaten-Application for details.
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
7 */
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
8
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
9 /*
875
13c0e64e1873 Applied Patch which was presented in the Workshop: Title of a Messung-Window contains more details
Dustin Demuth <dustin@intevation.de>
parents: 709
diff changeset
10 * Window to create a Messung
621
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
11 */
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
12 Ext.define('Lada.view.window.MessungCreate', {
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
13 extend: 'Ext.window.Window',
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
14 alias: 'widget.messungcreate',
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
15
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
16 requires: [
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
17 'Lada.view.form.Messung'
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
18 ],
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
19
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
20 collapsible: true,
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
21 maximizable: true,
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
22 autoshow: true,
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
23 autoscroll: true,
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
24 layout: 'fit',
688
6a6d1b02a1a3 constrain windows to viewport
Dustin Demuth <dustin@intevation.de>
parents: 644
diff changeset
25 constrain: true,
621
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
26
875
13c0e64e1873 Applied Patch which was presented in the Workshop: Title of a Messung-Window contains more details
Dustin Demuth <dustin@intevation.de>
parents: 709
diff changeset
27 probe: null,
621
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
28 record: null,
644
71e8b84d7829 Reload grids on messung or ort changed/added.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 621
diff changeset
29 grid: null,
621
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
30
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
31 initComponent: function() {
875
13c0e64e1873 Applied Patch which was presented in the Workshop: Title of a Messung-Window contains more details
Dustin Demuth <dustin@intevation.de>
parents: 709
diff changeset
32 this.probe = this.record;
13c0e64e1873 Applied Patch which was presented in the Workshop: Title of a Messung-Window contains more details
Dustin Demuth <dustin@intevation.de>
parents: 709
diff changeset
33 if (this.probe === null) {
13c0e64e1873 Applied Patch which was presented in the Workshop: Title of a Messung-Window contains more details
Dustin Demuth <dustin@intevation.de>
parents: 709
diff changeset
34 Ext.Msg.alert('Zu der Messung existiert keine Probe!');
13c0e64e1873 Applied Patch which was presented in the Workshop: Title of a Messung-Window contains more details
Dustin Demuth <dustin@intevation.de>
parents: 709
diff changeset
35 this.callParent(arguments);
13c0e64e1873 Applied Patch which was presented in the Workshop: Title of a Messung-Window contains more details
Dustin Demuth <dustin@intevation.de>
parents: 709
diff changeset
36 return;
13c0e64e1873 Applied Patch which was presented in the Workshop: Title of a Messung-Window contains more details
Dustin Demuth <dustin@intevation.de>
parents: 709
diff changeset
37 }
13c0e64e1873 Applied Patch which was presented in the Workshop: Title of a Messung-Window contains more details
Dustin Demuth <dustin@intevation.de>
parents: 709
diff changeset
38
13c0e64e1873 Applied Patch which was presented in the Workshop: Title of a Messung-Window contains more details
Dustin Demuth <dustin@intevation.de>
parents: 709
diff changeset
39 var messstelle = Ext.data.StoreManager.get('messstellen')
13c0e64e1873 Applied Patch which was presented in the Workshop: Title of a Messung-Window contains more details
Dustin Demuth <dustin@intevation.de>
parents: 709
diff changeset
40 .getById(this.probe.get('mstId'));
13c0e64e1873 Applied Patch which was presented in the Workshop: Title of a Messung-Window contains more details
Dustin Demuth <dustin@intevation.de>
parents: 709
diff changeset
41
13c0e64e1873 Applied Patch which was presented in the Workshop: Title of a Messung-Window contains more details
Dustin Demuth <dustin@intevation.de>
parents: 709
diff changeset
42 this.title = 'Neue Messung zu Probe: '
13c0e64e1873 Applied Patch which was presented in the Workshop: Title of a Messung-Window contains more details
Dustin Demuth <dustin@intevation.de>
parents: 709
diff changeset
43 + this.probe.get('probeIdAlt')
13c0e64e1873 Applied Patch which was presented in the Workshop: Title of a Messung-Window contains more details
Dustin Demuth <dustin@intevation.de>
parents: 709
diff changeset
44 + ' Mst: ' + messstelle.get('messStelle')
13c0e64e1873 Applied Patch which was presented in the Workshop: Title of a Messung-Window contains more details
Dustin Demuth <dustin@intevation.de>
parents: 709
diff changeset
45 + ' hinzufügen.';
13c0e64e1873 Applied Patch which was presented in the Workshop: Title of a Messung-Window contains more details
Dustin Demuth <dustin@intevation.de>
parents: 709
diff changeset
46
621
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
47 this.buttons = [{
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
48 text: 'Schließen',
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
49 scope: this,
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
50 handler: this.close
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
51 }];
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
52 this.width = 700;
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
53
709
6f6d2df00130 Added some CSS to make distinction between active and inactice windows more simple for the user
Dustin Demuth <dustin@intevation.de>
parents: 707
diff changeset
54 // add listeners to change the window appearence when it becomes inactive
6f6d2df00130 Added some CSS to make distinction between active and inactice windows more simple for the user
Dustin Demuth <dustin@intevation.de>
parents: 707
diff changeset
55 this.on({
6f6d2df00130 Added some CSS to make distinction between active and inactice windows more simple for the user
Dustin Demuth <dustin@intevation.de>
parents: 707
diff changeset
56 activate: function(){
6f6d2df00130 Added some CSS to make distinction between active and inactice windows more simple for the user
Dustin Demuth <dustin@intevation.de>
parents: 707
diff changeset
57 this.getEl().removeCls('window-inactive');
6f6d2df00130 Added some CSS to make distinction between active and inactice windows more simple for the user
Dustin Demuth <dustin@intevation.de>
parents: 707
diff changeset
58 },
6f6d2df00130 Added some CSS to make distinction between active and inactice windows more simple for the user
Dustin Demuth <dustin@intevation.de>
parents: 707
diff changeset
59 deactivate: function(){
6f6d2df00130 Added some CSS to make distinction between active and inactice windows more simple for the user
Dustin Demuth <dustin@intevation.de>
parents: 707
diff changeset
60 this.getEl().addCls('window-inactive');
6f6d2df00130 Added some CSS to make distinction between active and inactice windows more simple for the user
Dustin Demuth <dustin@intevation.de>
parents: 707
diff changeset
61 }
6f6d2df00130 Added some CSS to make distinction between active and inactice windows more simple for the user
Dustin Demuth <dustin@intevation.de>
parents: 707
diff changeset
62 });
6f6d2df00130 Added some CSS to make distinction between active and inactice windows more simple for the user
Dustin Demuth <dustin@intevation.de>
parents: 707
diff changeset
63
621
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
64 this.items = [{
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
65 border: 0,
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
66 autoScroll: true,
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
67 items: [{
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
68 xtype: 'messungform'
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
69 }]
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
70 }];
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
71 this.callParent(arguments);
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
72 },
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
73
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
74 initData: function() {
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
75 this.clearMessages();
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
76 var messung = Ext.create('Lada.model.Messung', {
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
77 probeId: this.record.get('id')
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
78 });
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
79 this.down('messungform').setRecord(messung);
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
80 },
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
81
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
82 setMessages: function(errors, warnings) {
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
83 //todo this is a stub
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
84 },
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
85 clearMessages: function() {
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
86 //todo this is a stub
707
c632c7c34029 added disable/enableChildren Method
Dustin Demuth <dustin@intevation.de>
parents: 688
diff changeset
87 },
c632c7c34029 added disable/enableChildren Method
Dustin Demuth <dustin@intevation.de>
parents: 688
diff changeset
88
c632c7c34029 added disable/enableChildren Method
Dustin Demuth <dustin@intevation.de>
parents: 688
diff changeset
89 disableChildren: function(){
c632c7c34029 added disable/enableChildren Method
Dustin Demuth <dustin@intevation.de>
parents: 688
diff changeset
90 //intentionally!
c632c7c34029 added disable/enableChildren Method
Dustin Demuth <dustin@intevation.de>
parents: 688
diff changeset
91 return true;
c632c7c34029 added disable/enableChildren Method
Dustin Demuth <dustin@intevation.de>
parents: 688
diff changeset
92 },
c632c7c34029 added disable/enableChildren Method
Dustin Demuth <dustin@intevation.de>
parents: 688
diff changeset
93
c632c7c34029 added disable/enableChildren Method
Dustin Demuth <dustin@intevation.de>
parents: 688
diff changeset
94 enableChildren: function(){
c632c7c34029 added disable/enableChildren Method
Dustin Demuth <dustin@intevation.de>
parents: 688
diff changeset
95 //intentionally!
c632c7c34029 added disable/enableChildren Method
Dustin Demuth <dustin@intevation.de>
parents: 688
diff changeset
96 return true;
621
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
97 }
c3c8a3be5117 Added messung create window.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
diff changeset
98 });

http://lada.wald.intevation.org