Blame view

ihm/app/store/Units.js 280 Bytes
5e3d9598   Laurent BEIGBEDER   11530: add input ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Ext.define('treps.store.Units', {
	extend: 'Ext.data.Store',

	model: 'treps.model.Unit',

	remoteSort: false,

	storeId : 'UnitsStore',

	proxy: {
		type: 'direct',
		reader : {
			type : 'json',
			root : 'units'
		},
		api: {
			read    : "TREPSAction.getUnitsList"
		}
	}
});