Mercurial > lada > lada-client
view app/model/MessprogrammKategorie.js @ 1047:fc6bf0e2444e
Added i18n for Orte-Grid
author | Dustin Demuth <dustin@intevation.de> |
---|---|
date | Mon, 29 Feb 2016 11:18:16 +0100 |
parents | 1251094e7500 |
children | 981339d774b8 |
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 MessprogrammKategorie Stammdaten */ Ext.define('Lada.model.MessprogrammKategorie', { extend: 'Ext.data.Model', fields: [{ name: 'id' }, { name: 'netzbetreiberId' }, { name: 'mplId' }, { name: 'bezeichnung' }, { name: 'letzteAenderung', type: 'date', convert: function(v) { if (!v) { return v; } return new Date(v); } }, { name: 'readonly', type: 'boolean' }], idProperty: 'id', proxy: { type: 'rest', url: 'lada-server/rest/messprogrammkategorie', reader: { type: 'json', root: 'data' } } });