Mercurial > lada > lada-client
view app/model/Probenzusatzwert.js @ 524:8972f008dfb1
Make tables editable for 'MKommentare'
See LSB 3.5
author | Roland Geider <roland.geider@intevation.de> |
---|---|
date | Tue, 16 Dec 2014 16:20:42 +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 Probenzusatzwert */ Ext.define('Lada.model.Probenzusatzwert', { extend: 'Lada.model.Base', fields: [{ name: "id" }, { name: "mehId" }, { name: "beschreibung" }, { name: "zusatzwert" }, { name: "eudfKeyword" }], idProperty: "id", proxy: { type: 'rest', url: 'server/rest/sta_probenzusatz', autoload: true, reader: { type: 'json', root: 'data' } } });