Mercurial > lada > lada-client
view app/model/ProbeList.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 | 832e3c8f9191 |
children | debfcc7713e3 |
line wrap: on
line source
/** * A ProbeList. * This class represents the result list of "Proben" in the search query * */ Ext.define('Lada.model.ProbeList', { extend: 'Lada.model.Base', fields: [ {name: "readonly"} ], idProperty: "probeId", proxy: { type: 'rest', appendId: true, //default url: 'server/rest/proben', reader: { type: 'json', root: 'data' } } });