Mercurial > lada > lada-client
view app/model/Base.js @ 336:e4a0645058a5
Inherit form model.base. Formatting
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Tue, 13 Aug 2013 08:54:25 +0200 |
parents | 7f5f74e62658 |
children | 8bc067b5f9c5 |
line wrap: on
line source
/** * Base class for models */ Ext.define('Lada.model.Base', { extend: 'Ext.data.Model', requires: ['Lada.lib.Helpers'], /** * Helper function to build an ID which is used in the proxy calls. This * function is a workaround for * https://roundup-intern.intevation.de/bfs/issue30 * as some items can not be identified with a singe id. */ getEidi: function() { return "/" + idProperty; } });