Mercurial > lada > lada-client
view app/model/OrtsZusatz.js @ 1373:94d35d5a7913
update other panels if ortegrid changes
author | Maximilian Krambach <mkrambach@intevation.de> |
---|---|
date | Thu, 09 Feb 2017 11:54:22 +0100 |
parents | 7e86f4f43907 |
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 for OrtsZusatz Stammdaten. */ Ext.define('Lada.model.OrtsZusatz', { extend: 'Ext.data.Model', /** * Fields are: * - ozsId: The unique identifier (Primary key). * - ortszusatz: The long description. */ fields: [{ name: 'ozsId' }, { name: 'ortszusatz' }], idProperty: 'ozsId', proxy: { type: 'rest', url: 'lada-server/rest/ortszusatz', reader: { type: 'json', root: 'data' } } });