Mercurial > lada > lada-client
view app/model/Staat.js @ 196:2cf26580d75d
Set messungsId to the add buttons in the lists on edit page for messungen.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Mon, 08 Jul 2013 16:10:10 +0200 |
parents | e9fb4814153a |
children | 5f373d9d55cd |
line wrap: on
line source
Ext.define('Lada.model.Staat', { extend: 'Ext.data.Model', fields: [ {name: "staatId", type: 'int'}, {name: "staat"}, {name: "staatIso"}, {name: "staatKurz"} ], idProperty: "staatId", proxy: { type: 'rest', appendId: true, //default url: 'server/rest/staat', api: { }, reader: { type: 'json', root: 'data' } } }); function ts2date(v, record){ // Converts a timestamp into a date object. return new Date(v); }