Mercurial > lada > lada-client
comparison app/store/Datenbasis.js @ 41:a1be7ccd4d0c
Added datenbasis combobox
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Fri, 24 May 2013 16:37:54 +0200 |
parents | |
children | ab067fdb91b5 |
comparison
equal
deleted
inserted
replaced
40:f9b6de636ad0 | 41:a1be7ccd4d0c |
---|---|
1 Ext.define('Lada.store.Datenbasis', { | |
2 extend: 'Ext.data.Store', | |
3 fields: ['datenbasisId', 'beschreibung', 'datenbasis'], | |
4 proxy: { | |
5 type: 'ajax', | |
6 api: { | |
7 read: 'server/rest/datenbasis' | |
8 }, | |
9 reader: { | |
10 type: 'json' | |
11 } | |
12 } | |
13 }); | |
14 |