torsten@472: /* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz torsten@472: * Software engineering by Intevation GmbH torsten@472: * torsten@472: * This file is Free Software under the GNU GPL (v>=3) torsten@472: * and comes with ABSOLUTELY NO WARRANTY! Check out torsten@472: * the documentation coming with IMIS-Labordaten-Application for details. torsten@472: */ torsten@472: torsten@374: /** torsten@374: * A ProbeList. torsten@374: * This class represents the result list of "Proben" in the search query torsten@374: * */ torsten@374: Ext.define('Lada.model.ProbeList', { torsten@374: extend: 'Lada.model.Base', raimund@491: raimund@491: fields: [{ raimund@491: name: "readonly" raimund@491: }], raimund@491: raimund@488: idProperty: "id", raimund@491: torsten@374: proxy: { torsten@374: type: 'rest', raimund@488: url: 'server/rest/probe', torsten@374: reader: { torsten@374: type: 'json', torsten@374: root: 'data' torsten@374: } torsten@374: } torsten@374: });