Guest User

Untitled

a guest
Jul 18th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. var store = new Ext.data.Store({
  2. model: 'Result',
  3. proxy: {
  4. type: 'ajax',
  5. extraParams: {search_term : term},
  6. url : 'find.pl'
  7. },
  8. });
  9.  
  10. store.load({
  11. params:{
  12. search_term:'my runtime search term'
  13. }
  14. //other options like a callback function, append/add flag, etc.
  15. });
Add Comment
Please, Sign In to add comment