view app/store/Sql.js @ 8:e4fcb4ddd782

Moved stored SQL into its own file.
author Torsten Irländer <torsten.irlaender@intevation.de>
date Mon, 29 Apr 2013 16:31:31 +0200
parents
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