[Lada-commits] [PATCH] Merge
Wald Commits
scm-commit at wald.intevation.org
Wed Dec 17 15:43:04 CET 2014
# HG changeset patch
# User Roland Geider <roland.geider at intevation.de>
# Date 1418827375 -3600
# Node ID 31a770c6a9a976cae6caccede7690049c343f4a9
# Parent 6301d3210a9fffbe25e020fcdb195fc8e9aa29a4
# Parent eef1ff9f2bd2d002994d25b56188dc13599891e9
Merge
diff -r 6301d3210a9f -r 31a770c6a9a9 app/controller/Kommentare.js
--- a/app/controller/Kommentare.js Wed Dec 17 12:10:40 2014 +0100
+++ b/app/controller/Kommentare.js Wed Dec 17 15:42:55 2014 +0100
@@ -30,9 +30,9 @@
addListeners: function() {
this.control({
- 'kommentarelist': {
- itemdblclick: this.editItem
- },
+ //'kommentarelist': {
+ // itemdblclick: this.editItem
+ //},
'kommentarelist toolbar button[action=add]': {
click: this.addItem
},
diff -r 6301d3210a9f -r 31a770c6a9a9 app/controller/Zusatzwerte.js
--- a/app/controller/Zusatzwerte.js Wed Dec 17 12:10:40 2014 +0100
+++ b/app/controller/Zusatzwerte.js Wed Dec 17 15:42:55 2014 +0100
@@ -22,9 +22,9 @@
addListeners: function() {
this.control({
- 'zusatzwertelist': {
- itemdblclick: this.editItem
- },
+ //'zusatzwertelist': {
+ // itemdblclick: this.editItem
+ //},
'zusatzwertelist toolbar button[action=add]': {
click: this.addItem
},
diff -r 6301d3210a9f -r 31a770c6a9a9 app/view/kommentare/List.js
--- a/app/view/kommentare/List.js Wed Dec 17 12:10:40 2014 +0100
+++ b/app/view/kommentare/List.js Wed Dec 17 15:42:55 2014 +0100
@@ -29,6 +29,11 @@
probeId: null,
initComponent: function() {
+ var rowEditing = Ext.create('Ext.grid.plugin.RowEditing', {
+ clicksToMoveEditor: 1,
+ autoCancel: false
+ });
+ this.plugins = [rowEditing];
this.dockedItems = [{
xtype: 'toolbar',
dock: 'bottom',
@@ -45,14 +50,26 @@
}];
this.columns = [{
header: 'Erzeuger',
- dataIndex: 'erzeuger'
+ dataIndex: 'erzeuger',
+ editor: {
+ allowBlank: false,
+ }
}, {
header: 'Datum',
- dataIndex: 'datum'
+ dataIndex: 'datum',
+ editor: {
+ xtype: 'datefield',
+ allowBlank: false,
+ format: 'd.m.Y',
+ maxValue: Ext.Date.format(new Date(), 'd.m.Y')
+ }
}, {
header: 'Text',
dataIndex: 'text',
- flex: 1
+ flex: 1,
+ editor: {
+ allowBlank: false,
+ }
}];
this.callParent(arguments);
}
diff -r 6301d3210a9f -r 31a770c6a9a9 app/view/messungen/List.js
--- a/app/view/messungen/List.js Wed Dec 17 12:10:40 2014 +0100
+++ b/app/view/messungen/List.js Wed Dec 17 15:42:55 2014 +0100
@@ -97,10 +97,6 @@
return 'unbekannt';
}
return sstore.last().get('status');
- },
- editor: {
- xtype: 'numberfield',
- allowBlank: false
}
}, {
header: 'OK-Flag',
diff -r 6301d3210a9f -r 31a770c6a9a9 app/view/messwerte/List.js
--- a/app/view/messwerte/List.js Wed Dec 17 12:10:40 2014 +0100
+++ b/app/view/messwerte/List.js Wed Dec 17 15:42:55 2014 +0100
@@ -53,6 +53,7 @@
header: '<NWG',
dataIndex: 'messwertNwg',
editor: {
+ xtype: 'nwg',
allowBlank: false
}
}, {
diff -r 6301d3210a9f -r 31a770c6a9a9 app/view/zusatzwerte/List.js
--- a/app/view/zusatzwerte/List.js Wed Dec 17 12:10:40 2014 +0100
+++ b/app/view/zusatzwerte/List.js Wed Dec 17 15:42:55 2014 +0100
@@ -26,6 +26,11 @@
probeId: null,
initComponent: function() {
+ var rowEditing = Ext.create('Ext.grid.plugin.RowEditing', {
+ clicksToMoveEditor: 1,
+ autoCancel: false
+ });
+ this.plugins = [rowEditing];
this.dockedItems = [{
xtype: 'toolbar',
dock: 'bottom',
@@ -42,7 +47,11 @@
}];
this.columns = [{
header: 'PZW-ID',
- dataIndex: 'id'
+ dataIndex: 'id',
+ editor: {
+ xtype: 'numberfield',
+ allowBlank: false
+ }
}, {
header: 'PZW-Größe',
dataIndex: 'pzsId',
@@ -51,7 +60,10 @@
var record = store.getById(value);
return record.get('beschreibung');
},
- flex: 1
+ flex: 1,
+ editor: {
+ xtype: 'probenzusatzwert'
+ }
}, {
header: 'Messwert',
dataIndex: 'id',
@@ -67,7 +79,10 @@
}
}, {
header: 'rel. Unsich.[%]',
- dataIndex: 'messfehler'
+ dataIndex: 'messfehler',
+ editor: {
+ allowBlank: false
+ }
}, {
header: 'Maßeinheit',
dataIndex: 'pzsId',
@@ -77,7 +92,11 @@
var mehId = zstore.getById(value).get('mehId');
var record = mstore.findRecord('id', mehId);
return record.get('einheit');
- }
+ }/*,
+ editor: {
+ xtype: 'messeinheit',
+ allowBlank: false
+ }*/
}];
this.callParent(arguments);
}
More information about the Lada-commits
mailing list