Advertisement
gordonmcg

MapIncidents.js

May 23rd, 2012
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. Ext.define('SF.store.MapIncidents', {
  2. extend: 'Ext.data.Store',
  3. model: 'SF.model.Incident',
  4. autoLoad: true,
  5.  
  6. proxy: {
  7. type: 'ajax',
  8. api: {
  9. read: 'data/incidents.json'
  10. },
  11. reader: {
  12. type: 'json',
  13. root: 'incidents',
  14. successProperty: 'success'
  15. }
  16. }
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement