Mercurial > lada > lada-client
view app/store/Verwaltungseinheiten.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 | 65688621c727 |
children | f9bb1ecf6462 7d80feaa4a7f |
line wrap: on
line source
/** * Store for Verwaltungseinheiten */ Ext.define('Lada.store.Verwaltungseinheiten', { extend: 'Ext.data.Store', fields: ['gemId', 'bezeichnung'], sorters: [{ property: 'bezeichnung', }], autoLoad: false, proxy: { type: 'ajax', api: { read: 'server/rest/verwaltungseinheit' }, reader: { type: 'json', root: 'data' } } });