Mercurial > lada > lada-client
comparison app/view/form/Messung.js @ 589:4c97717b92da
Cosmetics.
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Wed, 11 Mar 2015 15:21:55 +0100 |
parents | 424802824648 |
children | 8a156a7fbe67 |
comparison
equal
deleted
inserted
replaced
588:e24bc8cf8e1d | 589:4c97717b92da |
---|---|
27 | 27 |
28 recordId: null, | 28 recordId: null, |
29 | 29 |
30 trackResetOnLoad: true, | 30 trackResetOnLoad: true, |
31 | 31 |
32 initComponent: function(){ | 32 initComponent: function() { |
33 this.items = [{ | 33 this.items = [{ |
34 xtype: 'fieldset', | 34 xtype: 'fieldset', |
35 title: 'Allgemein' | 35 title: 'Allgemein' |
36 }]; | 36 }]; |
37 this.callParent(arguments); | 37 this.callParent(arguments); |
38 }, | 38 }, |
39 | 39 |
40 setRecord: function(record){ | 40 setRecord: function(record) { |
41 this.getForm().loadRecord(record); | 41 this.getForm().loadRecord(record); |
42 }, | 42 }, |
43 | 43 |
44 setMessages: function() { | 44 setMessages: function() { |
45 //todo this is a stub | 45 // TODO this is a stub |
46 }, | 46 }, |
47 | 47 |
48 clearMessages: function() { | 48 clearMessages: function() { |
49 //todo this is a stub | 49 // TODO this is a stub |
50 }, | 50 }, |
51 | 51 |
52 setReadonlye: function(){ | 52 setReadonly: function() { |
53 //todo this is a stub | 53 // TODO this is a stub |
54 } | 54 } |
55 }); | 55 }); |
56 |