Mercurial > lada > lada-client
view app/model/KommentarM.js @ 511:83a98b61546a
Make tables editable for 'Messungen'
See LSB 3.5
author | Roland Geider <roland.geider@intevation.de> |
---|---|
date | Mon, 15 Dec 2014 10:50:32 +0100 |
parents | 850ccfe5f3c4 |
children |
line wrap: on
line source
/* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz * Software engineering by Intevation GmbH * * This file is Free Software under the GNU GPL (v>=3) * and comes with ABSOLUTELY NO WARRANTY! Check out * the documentation coming with IMIS-Labordaten-Application for details. */ /** * Model class for Kommentare on Messungen */ Ext.define('Lada.model.KommentarM', { extend: 'Lada.model.Base', fields: [{ name: "id" }, { name: "messungsId" }, { name: "erzeuger" }, { name: "datum", type: 'date', convert: Lada.lib.Helpers.ts2date, defaultValue: new Date() }, { name: "text" }], idProperty: "id", proxy: { type: 'rest', url: 'server/rest/kommentar_m', reader: { type: 'json', root: 'data' } } });