dustin@751: /* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz dustin@751: * Software engineering by Intevation GmbH dustin@751: * dustin@751: * This file is Free Software under the GNU GPL (v>=3) dustin@751: * and comes with ABSOLUTELY NO WARRANTY! Check out dustin@751: * the documentation coming with IMIS-Labordaten-Application for details. dustin@751: */ dustin@751: dustin@751: /** dustin@751: * A MessprogrammList. dustin@751: * This class represents the result list of 'Messprogramme' in the search query dustin@751: * */ dustin@751: Ext.define('Lada.model.MessprogrammList', { dustin@751: extend: 'Ext.data.Model', dustin@751: dustin@751: fields: [{ dustin@751: name: 'readonly' dustin@751: }], dustin@751: dustin@751: idProperty: 'id', dustin@751: dustin@751: proxy: { dustin@751: type: 'rest', dustin@999: url: 'lada-server/rest/messprogramm', dustin@751: reader: { dustin@751: type: 'json', dustin@751: root: 'data', dustin@751: totalProperty: 'totalCount' dustin@751: } dustin@751: } dustin@751: });