I have the following repository:
var store = new Ext.data.Store({ model: 'Result', proxy: { type: 'ajax', extraParams: {search_term : term}, url : 'find.pl' }, });
How to change the parameters with which the url is called (e.g. search_term) at runtime?
source share