Mercurial > lada > lada-client
view app/model/Status.js @ 702:0c8e689f3bcb
Added readonly to models, Probenzusatzwertgrid does now check wheter a record is readonly and disables the roweditor in such a case
author | Dustin Demuth <dustin@intevation.de> |
---|---|
date | Fri, 27 Mar 2015 10:20:22 +0100 |
parents | 9635f4e60b13 |
children | af16a257d5f6 |
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 Status */ Ext.define('Lada.model.Status', { extend: 'Ext.data.Model', fields: [{ name: 'id' }, { name: 'owner', type: 'boolean' }, { name: 'readonly', type: 'boolean', persist: false }, { name: 'messungsId' }, { name: 'erzeuger' }, { name: 'status' }, { name: 'sdatum', type: 'date', convert: function(v) { if (!v) { return v; } return new Date(v); }, defaultValue: new Date() }, { name: 'skommentar' }, { name: 'treeModified' }], idProperty: 'id', proxy: { type: 'rest', url: 'lada-server/status', reader: { type: 'json', root: 'data' } } });