On a sencha-touch, here\'s is my store declaration
Ext.regStore(\'newsStore\', { model: \'News\', autoLoad: true, proxy: { type: \'ajax\
You could try using extraParams:
extraParams
Ext.regStore('newsStore', { model: 'News', autoLoad: true, proxy: { type: 'ajax', url: '../news/list.form', reader: { type: 'json', root: '' }, extraParams: { format: 'json' } }, });