view app/store/Sql.js @ 75:4a82e28dfcc4

Translate error codes and store them as attributes of the form
author Torsten Irländer <torsten.irlaender@intevation.de>
date Wed, 05 Jun 2013 18:04:39 +0200
parents e4fcb4ddd782
children
line wrap: on
line source
Ext.define('Lada.store.Sql', {
    extend: 'Ext.data.Store',
    fields: ['id', 'name', 'description', 'sql'],
    data  : [
        {'id': '1', 'name': 'MST, UWB', 'description': 'Beschreibung der MST, UWB Abfrage', 'sql': 'select * from xxx'},
        {'id': '2', 'name': 'Rbegin', 'description': 'Beschreibung der Rbegin Abfrage', 'sql': 'select * from xxx'}
    ]
});

http://lada.wald.intevation.org