view app/model/Base.js @ 324:7f5f74e62658

Removed documentation of things which are already documented in the Ext model class.
author Torsten Irländer <torsten.irlaender@intevation.de>
date Tue, 13 Aug 2013 08:46:47 +0200
parents aeeb0f534411
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;
    }
});

http://lada.wald.intevation.org