Mercurial > lada > lada-client
view app.js @ 140:00e43c00b7f2
Display messwert of Zusatzwert with a prepended "<" if the messwert is smaller
then the nachweisgrenze.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Fri, 28 Jun 2013 09:26:07 +0200 |
parents | 747d488b9203 |
children | 7b1140bd8b3d |
line wrap: on
line source
Ext.application({ // Name of the application. Do not change as this name is used in // references! name: 'Lada', // Setting up translations. This is done using a ext-plgin which can be // found on https://github.com/elmasse/Ext.i18n.Bundle requires: ['Ext.i18n.Bundle'], bundle: { bundle: 'Lada', lang: 'de-DE', path: 'resources', noCache: true }, // Setting this variable to true triggers loading the Viewport.js // file which sets ob the viewport. autoCreateViewport: true, // Start the application. launch: function() { console.log('Launching the application'); }, // Define the controllers of the application. They will be initialized // first before the application "launch" function is called. controllers: [ 'Sql', 'Proben', 'Zusatzwerte' //'Kommentare', //'Sql', //'Orte', //'Messungen' ] }); Ext.data.writer.Json.override({ getRecordData: function(record, getEverything) { if(this.writeEverything || record.writeEverything){ console.log('getRecordData', this,arguments); return record.getAllData(); } else { return this.callOverridden(arguments); } } }); Ext.data.Model.addMembers({ getAllData: function() { var data1 = this.getData(); var data2 = this.getAssociatedData( ); var dataMerged = Ext.Object.merge(data1, data2); return dataMerged; }, getEidi: function() { return "/" + this.getId(); } });