Mercurial > lada > lada-client
view app/store/Staaten.js @ 417:a4eb98a6ea20
Disabled trigger for combobox and request data if two chars typed.
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Wed, 09 Oct 2013 14:48:29 +0200 |
parents | 39297b8e5ba2 |
children | f9bb1ecf6462 |
line wrap: on
line source
/** * Store for Staaten */ Ext.define('Lada.store.Staaten', { extend: 'Ext.data.Store', sorters: [{ property: 'staat', }], model: 'Lada.model.Staat', autoLoad: true, proxy: { type: 'ajax', api: { read: 'server/rest/staat' }, reader: { type: 'json', root: 'data' } } });