Guest User

Untitled

a guest
Jul 21st, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. // Create a standard HttpProxy instance. THIS IS WHERE I'M SETTING THE URL INITIALLY
  2. var proxy = new Ext.data.HttpProxy({
  3. url: '/loads/'
  4. });
  5.  
  6.  
  7. //AND LATER...
  8. //
  9. proxy.url = "/data/" + escape(results[0].geometry.location);
  10. store.load();
  11.  
  12. // BUT NO GO! :(
Add Comment
Please, Sign In to add comment