Mercurial > lada > lada-client
view app/model/Kommentar.js @ 162:5eb0cfac0e30
Added nested id attribute which comes in JSON response to the model as we need
it later in the grid view to be able to acess messungsIs and probeId in the
custom renderer.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Wed, 03 Jul 2013 14:02:35 +0200 |
parents | 7b1140bd8b3d |
children | 53a446d4f424 |
line wrap: on
line source
Ext.define('Lada.model.Kommentar', { extend: 'Ext.data.Model', fields: [ {name: "kId"}, {name: "probeId"}, {name: "erzeuger"}, {name: "kdatum", type: 'date', convert: ts2date, defaultValue: new Date()}, {name: "ktext"} ], idProperty: "kId", proxy: { type: 'rest', appendId: true, //default url: 'server/rest/kommentare', reader: { type: 'json', root: 'data' } }, getEidi: function() { var kid = this.get('kId'); var probeId = this.get('probeId'); return "/" + kid + "/" + probeId; } }); function ts2date(v, record){ // Converts a timestamp into a date object. return new Date(v); }