On a sencha-touch, here\'s is my store declaration
Ext.regStore(\'newsStore\', {
model: \'News\',
autoLoad: true,
proxy: {
type: \'ajax\
I suggest you a more elegant solution, the Sencha way to do that:
//Take your store
var store = Ext.StoreMgr.get('YOUR_STORE_ID');
//Apply the params
Ext.apply(store.getProxy().extraParams, {
partyID: options.partyID,
eventName: options.eventName
});
//Reload your store
store.contactInfoId.read();
Hope this helps.