Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Ext.define('SF.store.MapIncidents', {
- extend: 'Ext.data.Store',
- model: 'SF.model.Incident',
- autoLoad: true,
- proxy: {
- type: 'ajax',
- api: {
- read: 'data/incidents.json'
- },
- reader: {
- type: 'json',
- root: 'incidents',
- successProperty: 'success'
- }
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement